aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Technology.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/Technology.cs')
-rw-r--r--src/Data/DevHive.Data.Models/Technology.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Data/DevHive.Data.Models/Technology.cs b/src/Data/DevHive.Data.Models/Technology.cs
new file mode 100644
index 0000000..0dc077f
--- /dev/null
+++ b/src/Data/DevHive.Data.Models/Technology.cs
@@ -0,0 +1,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();
+ }
+}