forked from Sarah/Lieb-Website
12 lines
No EOL
259 B
C#
12 lines
No EOL
259 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;
|
|
}
|
|
} |