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; }
|
|
}
|
|
}
|