mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-05 16:56:35 +08:00
13 lines
339 B
C#
13 lines
339 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; }
|
||
|
|
}
|
||
|
|
}
|