namespace IStation.Application
{
///
///
///
public class TenantUserMappingStdDto
{
///
///
///
public TenantUserMappingStdDto() { }
///
///
///
public TenantUserMappingStdDto(Model.TenantUserMapping rhs)
{
this.TenantID = rhs.TenantID;
this.UserID = rhs.UserID;
}
///
/// 租户id
///
public long TenantID { get; set; }
///
/// 用户id
///
public long UserID { get; set; }
}
}