aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
blob: 575aea6e5e7904e64ca1921b2c194ec7fd9aac91 (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 ITechnology : IModel
	{
		string Name { get; set; }
		HashSet<User> Users { get; set; }
	}
}