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.
Connected.Framework/Connected.Security/Permissions/PermissionSchemaDescriptor.cs

14 lines
282 B

namespace Connected.Security.Permissions
{
internal class PermissionSchemaDescriptor : IPermissionSchemaDescriptor
{
public string Id { get; init; }
public string Title { get; init; }
public string Avatar { get; init; }
public string Description { get; init; }
}
}