ace/Source/ACE.Database/Models/World/WeeniePropertiesString.cs
Galli ecd6ce2b43
Remove UTF-8 BOMs across repository (#4324)
* remove bom from source files

* Remove stray BOM cleanup comments
2025-06-22 15:33:36 -04:00

32 lines
727 B
C#

using System;
using System.Collections.Generic;
namespace ACE.Database.Models.World;
/// <summary>
/// String Properties of Weenies
/// </summary>
public partial class WeeniePropertiesString
{
/// <summary>
/// Unique Id of this Property
/// </summary>
public uint Id { get; set; }
/// <summary>
/// Id of the object this property belongs to
/// </summary>
public uint ObjectId { get; set; }
/// <summary>
/// Type of Property the value applies to (PropertyString.????)
/// </summary>
public ushort Type { get; set; }
/// <summary>
/// Value of this Property
/// </summary>
public string Value { get; set; }
public virtual Weenie Object { get; set; }
}