using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Model
{
///
///
///
public class SpecialPropertyMappingSelected
{
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 分类标识
///
public long CatalogID { get; set; }
///
/// 属性标识
///
public long PropertyID { get; set; }
///
/// 是否选择
///
public bool Selected { get; set; }
}
}