namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate { /// /// Plate输入创建对象 /// public class PlateCreateInputVo { public string Name { get; set; } public string? Logo { get; set; } public string? Introduction { get; set; } public string Code { get; set; } } }