Files
Yi.Framework/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.Application.Contracts/Dtos/Plate/PlateUpdateInputVo.cs
2023-12-18 23:17:09 +08:00

14 lines
332 B
C#

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; }
public string? Code { get; set; }
public int OrderNum { get; set; }
}
}