summaryrefslogtreecommitdiff
path: root/Project-Unite/Models/Role.cs
blob: 5ae4227f56f6873096c7ee9818b4ac21816b889f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
using Microsoft.AspNet.Identity.EntityFramework;

namespace Project_Unite.Models
{
    public class Role : IdentityRole
    {
        public string Description { get; set; }
        public string ColorHex { get; set; }

        public int Priority { get; set; }

        public bool IsModerator { get; set; }
        public bool IsDeveloper { get; set; }
        public bool IsAdmin { get; set; }
        public bool IsMember { get; set; }
    }
}