添加bbs模块

This commit is contained in:
橙子
2023-01-29 20:56:11 +08:00
parent b4633efcba
commit d6565bd2d9
11 changed files with 90 additions and 19 deletions

View File

@@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Ddd.Dtos;
namespace Yi.BBS.Application.Contracts.Forum.Dtos
{
public class ArticleAllOutputDto : 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; }
}
}

View File

@@ -13,7 +13,6 @@ namespace Yi.BBS.Application.Contracts.Forum.Dtos
public string Content { get; set; }
public string Name { get; set; }
public long DiscussId { get; set; }
public long ParentId { get; set; }
public List<ArticleGetListOutputDto> Children { get; set; }
}