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

namespace DevHive.Data.Models
{
	public class Technology : ITechnology
	{
		public Guid Id { get; set; }
		public string Name { get; set; }
		public HashSet<User> Users { get; set; }
	}
}