zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Application/Models/Permissions/PermissionGrantInfoModel.cs
2023-12-05 17:22:48 +08:00

13 lines
275 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ZeroFramework.DeviceCenter.Application.Models.Permissions
{
public class PermissionGrantInfoModel
{
[AllowNull]
public string Name { get; set; }
public bool IsGranted { get; set; }
}
}