9 lines
263 B
C#
9 lines
263 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public class TemplatePermissionGroup
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public List<string> RoleDefinitions { get; set; } = new();
|
|
}
|