ace/Source/ACE.Database/Models/Shard/BiotaPropertiesTextureMap.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

30 lines
643 B
C#

using System;
using System.Collections.Generic;
namespace ACE.Database.Models.Shard;
/// <summary>
/// Texture Map Changes (from PCAPs) of Weenies
/// </summary>
public partial class BiotaPropertiesTextureMap
{
/// <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; }
public byte Index { get; set; }
public uint OldId { get; set; }
public uint NewId { get; set; }
public byte? Order { get; set; }
public virtual Biota Object { get; set; }
}