mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-10 19:50:53 +08:00
15 lines
391 B
C#
15 lines
391 B
C#
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; }
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
}
|
|
}
|