mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
13 lines
264 B
C#
13 lines
264 B
C#
using System.ComponentModel;
|
|
using OpenAuth.Repository.Domain;
|
|
|
|
namespace OpenAuth.App.Response;
|
|
|
|
public class OrgView: SysOrg
|
|
{
|
|
/// <summary>
|
|
/// 负责人
|
|
/// </summary>
|
|
[Description("负责人")]
|
|
public string ChairmanName { get; set; }
|
|
} |