14 lines
No EOL
299 B
C#
14 lines
No EOL
299 B
C#
|
|
namespace SharedClasses.SharedModels
|
|
{
|
|
public class ApiRole
|
|
{
|
|
public string Name { get; set; } = String.Empty;
|
|
|
|
public string Description { get; set; } = String.Empty;
|
|
|
|
public bool IsSignUpAllowed { get; set; } = false;
|
|
|
|
public int roleId {get; set;}
|
|
}
|
|
} |