13 lines
268 B
C#
13 lines
268 B
C#
namespace JNPF.VisualData.Entitys.Dto.ScreenCategory;
|
|
|
|
/// <summary>
|
|
/// 大屏分类修改输入.
|
|
/// </summary>
|
|
public class ScreenCategoryUpInput : ScreenCategoryCrInput
|
|
{
|
|
/// <summary>
|
|
/// 主键.
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
}
|