using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// DateAreaModel Data Structure. /// [Serializable] public class DateAreaModel : AopObject { /// /// 开始时间 /// [JsonProperty("begin_date")] public string BeginDate { get; set; } /// /// 结束时间 /// [JsonProperty("end_date")] public string EndDate { get; set; } } }