Files
Yi.Admin/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application.Contracts/Dtos/Plate/PlateCreateInputVo.cs

19 lines
457 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
2023-04-15 22:44:33 +08:00
{
/// <summary>
/// Plate输入创建对象
/// </summary>
public class PlateCreateInputVo
{
public string Name { get; set; }
2023-04-20 23:08:21 +08:00
public string? Logo { get; set; }
public string? Introduction { get; set; }
2023-12-11 22:14:13 +08:00
public string Code { get; set; }
2023-12-18 23:17:09 +08:00
public int OrderNum { get; set; }
2023-12-19 13:00:14 +08:00
public bool IsDisableCreateDiscuss { get; set; }
2023-04-15 22:44:33 +08:00
}
}