You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
475 B

3 years ago
namespace Identity.Api.Clean.Contracts.Models;
public class OrganizationUnitModel
{
/// <summary>
/// 此组织单位的层次代码。
/// 示例:“00001.00042.00005”。
/// 这是组织单位的唯一代码。
/// 如果OU层次结构改变,它是可变的。
/// </summary>
public string Code { get; set; }
/// <summary>
/// 此组织单位的显示名称。
/// </summary>
public string DisplayName { get; set; }
}