17 lines
618 B
C#
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; }
|
|
}
|
|
}
|