Spaces:
Running
Running
File size: 385 Bytes
3418204 c42fd03 3418204 aa93119 c42fd03 3418204 c42fd03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace TaskTrackingSystem.Shared.Models.Role
{
public class AssignAccessDto
{
[Required]
/// <summary>
/// Menu codes and permission codes selected for the role.
/// </summary>
public List<string> AccessCodes { get; set; } = new List<string>();
}
}
|