aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2021-03-17 17:31:21 +0200
committertranstrike <transtrike@gmail.com>2021-03-17 17:31:21 +0200
commit9b04b4f2b031a3c631dba65908f277996015ae05 (patch)
tree2decfa3d77a9ae6d52ea0636f4acde1ac9bb153f /src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
parent99e3bbad3f4d2ab5999d0de508907e5985e721a4 (diff)
downloadDevHive-friends_functionality.tar
DevHive-friends_functionality.tar.gz
DevHive-friends_functionality.zip
Removed interfaces for pure classesfriends_functionality
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, 0 insertions, 11 deletions
diff --git a/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs b/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
deleted file mode 100644
index 575aea6..0000000
--- a/src/Data/DevHive.Data.Models/Interfaces/ITechnology.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-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; }
- }
-}