diff options
Diffstat (limited to 'src/Services/DevHive.Services.Models/User/UpdateProfilePictureServiceModel.cs')
| -rw-r--r-- | src/Services/DevHive.Services.Models/User/UpdateProfilePictureServiceModel.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Services/DevHive.Services.Models/User/UpdateProfilePictureServiceModel.cs b/src/Services/DevHive.Services.Models/User/UpdateProfilePictureServiceModel.cs new file mode 100644 index 0000000..19ba08f --- /dev/null +++ b/src/Services/DevHive.Services.Models/User/UpdateProfilePictureServiceModel.cs @@ -0,0 +1,12 @@ +using System; +using Microsoft.AspNetCore.Http; + +namespace DevHive.Services.Models.User +{ + public class UpdateProfilePictureServiceModel + { + public Guid UserId { get; set; } + + public IFormFile Picture { get; set; } + } +} |
