aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs')
-rw-r--r--src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs b/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
new file mode 100644
index 0000000..575aea6
--- /dev/null
+++ b/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
@@ -0,0 +1,11 @@
+using System.Collections.Generic;
+using DevHive.Data.Models;
+
+namespace DevHive.Data.Models.Interfaces
+{
+ public interface ITechnology : IModel
+ {
+ string Name { get; set; }
+ HashSet<User> Users { get; set; }
+ }
+}