using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static IStation.Model.BimfaceFileUserSetting;
namespace IStation.Application
{
///
///
///
public class BimfaceFileUserSettingDto
{
///
/// 标识
///
public long ID { get; set; }
///
/// 客户标识
///
public long CorpID { get; set; }
///
/// 用户标识
///
public long UserID { get; set; }
///
/// Bimface文件映射标识
///
public long BimfaceFileMappingID { get; set; }
///
/// 设置
///
public UserSettingsModel Settings { get; set; }
}
}