aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Technology.cs
blob: 6f98f0b9356641ebb52f123d218ed1fe5a60e5f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; } = new();
	}
}