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

13 lines
275 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 PermissionGrantInfoModel
{
[AllowNull]
public string Name { get; set; }
public bool IsGranted { get; set; }
}
}