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
387 B

using System.Collections.Generic;
namespace Znyc.Cloudcar.Admin.Security.Dtos
{
/// <summary>
/// 充值活动入参
/// </summary>
public class RechargeAddInput
{
/// <summary>
/// 活动名称
/// </summary>
public string Name { get; set; }
public List<RechargeIntroAddInput> rechargeIntros { get; set; }
}
}