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.

28 lines
659 B

namespace Znyc.CloudCar.Model.Dtos.Currency
{
/// <summary>
/// 新增云币输入实体
/// </summary>
public class CurrencyAddInput
{
/// <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; }
}
}