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