2023-12-11 09:55:12 +08:00
|
|
|
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; }
|
2023-12-11 22:14:13 +08:00
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime CreationTime { get; set; }
|
2023-12-19 13:00:14 +08:00
|
|
|
|
2023-12-19 16:52:50 +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
|
|
|
}
|
|
|
|
|
}
|