diff options
| author | transtrike <transtrike@gmail.com> | 2020-12-20 10:50:01 +0200 |
|---|---|---|
| committer | transtrike <transtrike@gmail.com> | 2020-12-20 10:50:01 +0200 |
| commit | e2c8eeabf7ad3ec22a26786783a337b3ab1b102b (patch) | |
| tree | 8ab67175fb61797b1ff417a9a208cce0f349683b /src/DevHive.Common/Models/Data/IdModel.cs | |
| parent | a83b518a7a16d93f207bab8ec5c54c14c9493e23 (diff) | |
| download | DevHive-e2c8eeabf7ad3ec22a26786783a337b3ab1b102b.tar DevHive-e2c8eeabf7ad3ec22a26786783a337b3ab1b102b.tar.gz DevHive-e2c8eeabf7ad3ec22a26786783a337b3ab1b102b.zip | |
Moved IdModel to DevHive.Common.Data
Diffstat (limited to 'src/DevHive.Common/Models/Data/IdModel.cs')
| -rw-r--r-- | src/DevHive.Common/Models/Data/IdModel.cs | 9 |
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 |
