aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Interfaces/IRole.cs
blob: 3a87e1225dfe49a77cfbe7990d2ea10fcd08dafe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System.Collections.Generic;
using DevHive.Data.Models;

namespace DevHive.Data.Models.Interfaces
{
	public interface IRole
	{
		HashSet<User> Users { get; set; }
	}
}