mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-02 15:50:54 +08:00
11 lines
286 B
C#
11 lines
286 B
C#
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Post
|
|
{
|
|
public class PostUpdateInputVo
|
|
{
|
|
public bool? State { get; set; }
|
|
public string PostCode { get; set; }
|
|
public string PostName { get; set; }
|
|
public string? Remark { get; set; }
|
|
}
|
|
}
|