using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.EmotionManage.EmoticonDatas; namespace ARW.Model.Dto.Api.EmotionManage.EmoticonDatas { /// /// 表情包查询对象Api /// /// @author lwh /// @date 2023-10-29 /// public class EmoticonDataQueryDtoApi : PagerInfo { public long EmoticonCategoryGuid { get; set; } public string EmoticonDataName { get; set; } public bool IsLastUpdate { get; set; } = false; } /// /// 表情包详情输入对象Api /// /// @author lwh /// @date 2023-10-29 /// public class EmoticonDataDtoApi { [Required(ErrorMessage = "EmoticonDataGuid不能为空")] public long EmoticonDataGuid { get; set; } } }