emoticon_api/ARW.Model/Dto/Api/Advertisement/Notices/NoticeApiDto.cs
2023-10-09 22:40:04 +08:00

21 lines
433 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.Advertisement.Notices;
namespace ARW.Model.Dto.Api.Advertisement.Notices
{
/// <summary>
/// 公告查询对象Api
///
/// @author lwh
/// @date 2023-10-09
/// </summary>
public class NoticeQueryDtoApi : PagerInfo
{
public string NoticeTitle { get; set; }
}
}