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.
22 lines
499 B
22 lines
499 B
namespace Znyc.Cloudcar.Admin.Security.Dtos
|
|
{
|
|
public class CurrencyRecordInput
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public long UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总云币
|
|
/// </summary>
|
|
public decimal TotalCredits { get; set; }
|
|
|
|
/// <summary>
|
|
/// 可用云币
|
|
/// </summary>
|
|
public decimal AvailableCredits { get; set; }
|
|
}
|
|
}
|