mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-02 15:50:54 +08:00
11 lines
288 B
C#
11 lines
288 B
C#
|
|
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
|
||
|
|
{
|
||
|
|
public class ArticleUpdateInputVo
|
||
|
|
{
|
||
|
|
public string Content { get; set; }
|
||
|
|
public string Name { get; set; }
|
||
|
|
public Guid DiscussId { get; set; }
|
||
|
|
public Guid ParentId { get; set; }
|
||
|
|
}
|
||
|
|
}
|