zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Permissions/PermissionGroupModel.cs

16 lines
370 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Application.Models.Permissions
{
public class PermissionGroupModel
{
[AllowNull]
public string Name { get; set; }
[AllowNull]
public string DisplayName { get; set; }
public List<PermissionGrantModel> Permissions { get; set; } = [];
}
}