17 lines
427 B
C#
17 lines
427 B
C#
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<long>? UserAccessId { get; set; }
|
|
public List<int>? ContAccId { get; set; }
|
|
public List<byte>? AccessTypeId { get; set; }
|
|
public List<bool>? IsActive { get; set; }
|
|
}
|
|
}
|