aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Common/ExamTemplate.Common/RoleConst.cs
blob: 7d72feac1d0a1c21a9114fee0b8bdca5ea2aca76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.Generic;

namespace ExamTemplate.Common
{
	public static class RoleConst
	{
		public const string User = "User";
		public const string Admin = "Administrator";

		public static List<string> GetAllNames()
		{
			return new List<string>() {
				User, Admin
			};
		}
	}
}