17 lines
391 B
C#
17 lines
391 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; }
|
|
|
|
|
|
public bool IsDisableCreateDiscuss { get; set; }
|
|
}
|
|
}
|