aboutsummaryrefslogtreecommitdiff
path: root/src/Services/DevHive.Services.Models/User/UpdateProfilePictureServiceModel.cs
blob: 19ba08fcc33a433baf4c885277bf8f915887cdc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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; }
	}
}