using System.Collections.Generic; namespace OXGaming.TibiaAPI.Store { public class OfferDetails { public List DisabledReasons { get; } = new List(); public uint Id { get; set; } public uint Price { get; set; } public ushort Amount { get; set; } public byte HighlightState { get; set; } public bool IsConfirmedPrice { get; set; } public bool IsDisabled { get; set; } } }