namespace Yw.Application
{
///
///
///
public class AddBimfaceFileRelationInput
{
///
/// 数据类型
///
[Required]
public string ObjectType { get; set; }
///
/// 数据id
///
[Required, Range(1, long.MaxValue, ErrorMessage = "ObjectID 必须大于0")]
public long ObjectID { get; set; }
///
/// Bimface文件id
///
[Required]
public long BimfaceFileID { get; set; }
///
/// 用途
///
public string Purpose { get; set; }
///
/// 设置
///
public string Settings { get; set; }
///
/// 说明
///
public string Description { get; set; }
}
}