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

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