using Znyc.CloudCar.Model.Dtos.EquipmentPicture; namespace Znyc.CloudCar.Model.Dtos.Browse { public class BrowseListOutput { public long Id { get; set; } public long UserId { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 设备介绍 /// public string Introduction { get; set; } /// /// 出售价格 /// public decimal SellingPrice { get; set; } /// /// 车辆位置 /// public string AutomobileLocation { get; set; } /// /// 联系电话 /// public string ContactPhone { get; set; } /// /// 姓名 /// public string UserName { get; set; } /// /// 头像 /// public string AvatarUrl { get; set; } /// /// 是否获取电话 /// public bool IsGetPhone { get; set; } /// /// 车辆图片 /// public List EquipmentPictures { get; set; } /// /// 获取电话云币 /// public int CallPhoneCurrency { get; set; } public int State { get; set; } } }