NonInventPurchasingSystem/CPRNIMS.WebApps/Controllers/Base/BaseProperties.cs
2026-01-20 07:44:30 +08:00

17 lines
618 B
C#

using Microsoft.AspNetCore.Mvc;
namespace CPRNIMS.WebApps.Controllers.Base
{
public class BaseProperties : Controller
{
public string UserRoles { get; set; } = string.Empty;
public string MyAccess { get; set; } = string.Empty;
public bool IsValid { get; set; } = false;
public string UserCompany { get; set; } = string.Empty;
public string UserId { get; set; } = string.Empty;
public string URLAttachment { get; set; } = string.Empty;
public string attachments { get; set; } = string.Empty;
public string? FullName { get; set; }
}
}