You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/IoT.Shared/Application/Models/DisplaySceneModel.cs

15 lines
371 B

using Infrastructure.Application;
using System.ComponentModel.DataAnnotations;
namespace Application.Models
{
[Display(Name = "场景")]
public class DisplaySceneModel : EditModel
{
[Display(Name = "节点名称")]
public string NodeName { get; set; }
[Display(Name = "场景名称")]
public string Name { get; set; }
}
}