Files
2023-03-13 15:00:34 +08:00

25 lines
526 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UsersCurrent;
/// <summary>
/// 当前用户 所属组织 输出.
/// </summary>
[SuppressSniffer]
public class CurrentUserOrganizesOutput
{
/// <summary>
/// 主键Id.
/// </summary>
public string id { get; set; }
/// <summary>
/// 名称.
/// </summary>
public string fullName { get; set; }
/// <summary>
/// 是否默认 01是.
/// </summary>
public bool isDefault { get; set; } = false;
}