using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPRNIMS.Infrastructure.ViewModel.Account { public class UserRightsList { public List? UserAccessId { get; set; } public List? ContAccId { get; set; } public List? AccessTypeId { get; set; } public List? IsActive { get; set; } } }