You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
691 B
30 lines
691 B
namespace Znyc.CloudCar.Model.Dtos.Currency
|
|
{
|
|
/// <summary>
|
|
/// 云币输出实体
|
|
/// </summary>
|
|
public class CurrencyOutput
|
|
{
|
|
//public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 可用云币
|
|
/// </summary>
|
|
public int AvailableCurrency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 正式云币
|
|
/// </summary>
|
|
public int OfficialCurrency { get; set; }
|
|
|
|
/// <summary>
|
|
/// 临时云币
|
|
/// </summary>
|
|
public int TemporarylCurrency { get; set; }
|
|
}
|
|
}
|