using Knoks.Core.Entities.Interfaces; using System; namespace Knoks.Core.Entities { public class Account : IApiResult { public long AccountId { get; set; } public long UserId { get; set; } //public int ApiConsumerId { get; set; } public string Symbol { get; set; } public decimal? CurrentBalance { get; set; } public decimal? CurrentBonusBalance { get; set; } public decimal? TotalPending { get; set; } public DateTime CreateDate { get; set; } public DateTime? LastModifyDate { get; set; } public string LastModifyOrigin { get; set; } public int? LastModifyOperatorId { get; set; } public string WalletAddress { get; set; } } }