namespace SiNan.Model.Dto
{
    public class AdGroupAggregationRequest
    {
        /// <summary>
        /// ShopId可空
        /// </summary>
        public long? ShopId { get; set; }

        public DateTime AggregationDate { get; set; }

        /// <summary>
        /// 单元Id可空
        /// </summary>
        public long? AdGroupId { get; set; }
    }
}