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

namespace DevHive.Data.Models.Interfaces
{
	public interface ILanguage : IModel
	{
		string Name { get; set; }
		HashSet<User> Users { get; set; }
	}
}