aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-02-03 10:36:56 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-02-03 10:36:56 +0200
commit5f40cd28070a66485960ffce8a6e6b446cd9db20 (patch)
treed4a4c57148ceb21d0fe47dad463c35101495c7b0 /src
parent01ad75fa5a871a0c9f8cd0c5291312286ae4d52d (diff)
downloadDevHive-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.cs3
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; }