namespace Yi.Framework.DigitalCollectibles.Domain.Shared.Etos; /// /// 成功交易eto /// public class SuccessMarketEto { /// /// 出售者用户id /// public Guid SellUserId { get; set; } /// /// 购买者用户id /// public Guid BuyId { get; set; } /// /// 藏品id /// public Guid CollectiblesId { get; set; } /// /// 出售数量 /// public int SellNumber{ get; set; } /// /// 出售单价 /// public decimal UnitPrice{ get; set; } /// /// 实际到手价格(扣除税收) /// public decimal RealTotalPrice{ get; set; } }