NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/Account/UserRightsList.cs
2026-01-20 07:44:30 +08:00

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; }
}
}