aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Interfaces/Models/IRole.cs
blob: 0623f07c19df4024f2a403b3a8c7754cd9e1f501 (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
	{
		List<User> Users { get; set; }
	}
}