aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Common/Models/Data
diff options
context:
space:
mode:
authortranstrike <transtrike@gmail.com>2020-12-20 10:50:01 +0200
committertranstrike <transtrike@gmail.com>2020-12-20 10:50:01 +0200
commite2c8eeabf7ad3ec22a26786783a337b3ab1b102b (patch)
tree8ab67175fb61797b1ff417a9a208cce0f349683b /src/DevHive.Common/Models/Data
parenta83b518a7a16d93f207bab8ec5c54c14c9493e23 (diff)
downloadDevHive-e2c8eeabf7ad3ec22a26786783a337b3ab1b102b.tar
DevHive-e2c8eeabf7ad3ec22a26786783a337b3ab1b102b.tar.gz
DevHive-e2c8eeabf7ad3ec22a26786783a337b3ab1b102b.zip
Moved IdModel to DevHive.Common.Data
Diffstat (limited to 'src/DevHive.Common/Models/Data')
-rw-r--r--src/DevHive.Common/Models/Data/IdModel.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/DevHive.Common/Models/Data/IdModel.cs b/src/DevHive.Common/Models/Data/IdModel.cs
new file mode 100644
index 0000000..1f2bf9a
--- /dev/null
+++ b/src/DevHive.Common/Models/Data/IdModel.cs
@@ -0,0 +1,9 @@
+using System;
+
+namespace DevHive.Common.Models.Data
+{
+ public class IdModel
+ {
+ public Guid Id { get; set; }
+ }
+} \ No newline at end of file