forked from raquelsa/AspNet.Identity.MySQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIdentityRole.cs
More file actions
44 lines (39 loc) · 946 Bytes
/
IdentityRole.cs
File metadata and controls
44 lines (39 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using Microsoft.AspNet.Identity;
using System;
namespace AspNet.Identity.MySQL
{
/// <summary>
/// Class that implements the ASP.NET Identity
/// IRole interface
/// </summary>
public class IdentityRole : IRole
{
/// <summary>
/// Default constructor for Role
/// </summary>
public IdentityRole()
{
}
/// <summary>
/// Constructor that takes names as argument
/// </summary>
/// <param name="name"></param>
public IdentityRole(string name)
{
Name = name;
}
public IdentityRole(string name, string id)
: this(name)
{
Id = id;
}
/// <summary>
/// Role ID
/// </summary>
public string Id { get; set; }
/// <summary>
/// Role name
/// </summary>
public string Name { get; set; }
}
}