diff options
| author | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-02-03 10:22:37 +0200 |
|---|---|---|
| committer | Syndamia <kamen.d.mladenov@protonmail.com> | 2021-02-03 10:22:37 +0200 |
| commit | 01ad75fa5a871a0c9f8cd0c5291312286ae4d52d (patch) | |
| tree | 4f6b2eaef0424ffbfdd405939fbaa9325cc9d2c8 /src/DevHive.Data/Models/User.cs | |
| parent | 81b3fc43a900857443c3c763f52e0a54719c2fae (diff) | |
| download | DevHive-01ad75fa5a871a0c9f8cd0c5291312286ae4d52d.tar DevHive-01ad75fa5a871a0c9f8cd0c5291312286ae4d52d.tar.gz DevHive-01ad75fa5a871a0c9f8cd0c5291312286ae4d52d.zip | |
Implemented profile picture table functionality; added models and interfaces for profile picture; added ability for user layers to update the profile picture; added migrations; updated mappings
Diffstat (limited to 'src/DevHive.Data/Models/User.cs')
| -rw-r--r-- | src/DevHive.Data/Models/User.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DevHive.Data/Models/User.cs b/src/DevHive.Data/Models/User.cs index 1c365e4..d73f989 100644 --- a/src/DevHive.Data/Models/User.cs +++ b/src/DevHive.Data/Models/User.cs @@ -14,7 +14,7 @@ namespace DevHive.Data.Models public string LastName { get; set; } - public string ProfilePictureUrl { get; set; } + public ProfilePicture ProfilePicture { get; set; } public HashSet<Language> Languages { get; set; } = new(); |
