using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Application
{
///
/// 更新常规属性input
///
public class UpdateGeneralPropertyInput
{
///
/// 标识
///
public long ID { get; set; }
///
/// 属性名称
///
public string PropertyName { get; set; }
///
/// 显示名称
///
public string DisplayName { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}