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
478 B
18 lines
478 B
namespace IdentityServer.DDD.Shared.ValueObjects;
|
|
|
|
public class PermissionGroupValueObject
|
|
{
|
|
/// <summary>
|
|
/// 组的唯一名称。
|
|
/// </summary>
|
|
public string GroupName { get; set; }
|
|
/// <summary>
|
|
/// 描述信息。
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
/// <summary>
|
|
/// 显示名称
|
|
/// </summary>
|
|
public string DisplayName { get; set; }
|
|
public List<PermissionValueObject> Permissions { get; set; }
|
|
}
|