mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-11 04:00:50 +08:00
14 lines
377 B
C#
14 lines
377 B
C#
using Yi.Framework.Infrastructure.Ddd.Dtos.Abstract;
|
|
|
|
namespace Yi.Furion.Core.Bbs.Dtos.Article
|
|
{
|
|
public class ArticleGetOutputDto : IEntityDto<long>
|
|
{
|
|
public long Id { get; set; }
|
|
public string Content { get; set; }
|
|
public string Name { get; set; }
|
|
public long DiscussId { get; set; }
|
|
public long ParentId { get; set; }
|
|
}
|
|
}
|