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

17 lines
391 B
C#
Raw Normal View History

2023-12-11 09:55:12 +08:00
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
{
public class PlateUpdateInputVo
{
public string? Name { get; set; }
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-12-11 09:55:12 +08:00
}
}