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

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