aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Role.cs
blob: 974add1de6de45fc8fd404e43543b913750a43af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;
using Microsoft.AspNetCore.Identity;
using System.ComponentModel.DataAnnotations.Schema;

namespace DevHive.Data.Models
{
	[Table("Roles")]
	public class Role : IdentityRole<Guid>
	{ }
}