blob: 9354d5b078009c17d56d1cee08be81448a3c639b (
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.Models.Interfaces;
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();
}
}
|