Files
Yi.Framework/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Post/PostCreateInputVo.cs
2024-09-04 16:24:26 +08:00

14 lines
355 B
C#

namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Post
{
/// <summary>
/// Post输入创建对象
/// </summary>
public class PostCreateInputVo
{
public bool? State { get; set; }
public string PostCode { get; set; }
public string PostName { get; set; }
public string? Remark { get; set; }
}
}