using System; using ACE.Entity.Enum; namespace ACE.Entity.Models { public class PropertiesCreateList { /// /// This is only used to tie this property back to a specific database row /// public uint DatabaseRecordId { get; set; } public DestinationType DestinationType { get; set; } public uint WeenieClassId { get; set; } public int StackSize { get; set; } public sbyte Palette { get; set; } public float Shade { get; set; } public bool TryToBond { get; set; } public PropertiesCreateList Clone() { var result = new PropertiesCreateList { DestinationType = DestinationType, WeenieClassId = WeenieClassId, StackSize = StackSize, Palette = Palette, Shade = Shade, TryToBond = TryToBond, }; return result; } } }