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

namespace DevHive.Data.Models
{
	public class Technology
	{
		public Guid Id { get; set; }

		public string Name { get; set; }

		public HashSet<User> Users { get; set; } = new();
	}
}