mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 16:56:35 +08:00
12 lines
296 B
C#
12 lines
296 B
C#
|
|
using Volo.Abp.Application.Dtos;
|
||
|
|
|
||
|
|
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
|
||
|
|
{
|
||
|
|
public class PlateGetOutputDto : EntityDto<Guid>
|
||
|
|
{
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string? Logo { get; set; }
|
||
|
|
public string? Introduction { get; set; }
|
||
|
|
}
|
||
|
|
}
|