Files

15 lines
391 B
C#
Raw Permalink Normal View History

2023-12-11 09:55:12 +08:00
using Volo.Abp.Application.Dtos;
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
{
public class ArticleGetOutputDto : EntityDto<Guid>
{
public string Content { get; set; }
public string Name { get; set; }
public Guid DiscussId { get; set; }
public Guid ParentId { get; set; }
2023-12-11 22:14:13 +08:00
public DateTime CreationTime { get; set; }
2023-12-11 09:55:12 +08:00
}
}