mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-20 00:16:37 +08:00
11 lines
268 B
C#
11 lines
268 B
C#
namespace Yi.Furion.Core.Bbs.Dtos.Article
|
|
{
|
|
public class ArticleUpdateInputVo
|
|
{
|
|
public string Content { get; set; }
|
|
public string Name { get; set; }
|
|
public long DiscussId { get; set; }
|
|
public long ParentId { get; set; }
|
|
}
|
|
}
|