diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-02-03 10:36:56 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-02-03 10:36:56 +0200 |
| commit | 5f40cd28070a66485960ffce8a6e6b446cd9db20 (patch) | |
| tree | d4a4c57148ceb21d0fe47dad463c35101495c7b0 /src | |
| parent | 01ad75fa5a871a0c9f8cd0c5291312286ae4d52d (diff) | |
| download | DevHive-5f40cd28070a66485960ffce8a6e6b446cd9db20.tar DevHive-5f40cd28070a66485960ffce8a6e6b446cd9db20.tar.gz DevHive-5f40cd28070a66485960ffce8a6e6b446cd9db20.zip | |
Made profile picture data model implement it's interface
Diffstat (limited to 'src')
| -rw-r--r-- | src/DevHive.Data/Models/ProfilePicture.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DevHive.Data/Models/ProfilePicture.cs b/src/DevHive.Data/Models/ProfilePicture.cs index e2ef04b..d5cc397 100644 --- a/src/DevHive.Data/Models/ProfilePicture.cs +++ b/src/DevHive.Data/Models/ProfilePicture.cs @@ -1,8 +1,9 @@ using System; +using DevHive.Data.Interfaces.Models; namespace DevHive.Data.Models { - public class ProfilePicture + public class ProfilePicture: IProfilePicture { public Guid Id { get; set; } |
