using System.Diagnostics.CodeAnalysis; namespace ZeroFramework.DeviceCenter.Application.Models.Permissions { public class PermissionUpdateRequestModel { [AllowNull] public IEnumerable ProviderInfos { get; set; } [AllowNull] public IEnumerable PermissionGrantInfos { get; set; } public Guid? ResourceGroupId { get; set; } } }