You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
PortfolioLink/backend/Models/Auths.cs

17 lines
320 B

namespace Models
{
public class Auth
{
public Int16 AuthId { get; set; }
public Int16 UserId { get; set; }
public Byte AuthLevelId { get; set; }
}
public class AuthWithLevel
{
public Auth Auth { get; set; }
public AuthLevels AuthLevel { get; set; }
}
}