blob: 17b60ddb60d7e83c5ba0bfa8a8a2147232a3c3bd (
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 virtual HashSet<User> Users { get; set; } = new();
}
}
|