13 lines
264 B
C#
13 lines
264 B
C#
namespace JNPF.VisualData.Entitys.Dto.ScreenConfig;
|
|
|
|
/// <summary>
|
|
/// 大屏配置创建输入.
|
|
/// </summary>
|
|
public class ScreenConfigUpInput : ScreenConfigCrInput
|
|
{
|
|
/// <summary>
|
|
/// 主键ID.
|
|
/// </summary>
|
|
public string Id { get; set; }
|
|
}
|