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.
17 lines
383 B
17 lines
383 B
namespace Znyc.CloudCar.Model.Dtos.Recharge
|
|
{
|
|
/// <summary>
|
|
/// 充值活动输出实体
|
|
/// </summary>
|
|
public class RechargeOutput
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 活动名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
public List<RechargeIntroOutput> introOutputs { get; set; }
|
|
}
|
|
}
|
|
|