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