aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/ProfilePicture.cs
blob: d5cc3978246d6255aeda9bd1a6570310d6ee9953 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using DevHive.Data.Interfaces.Models;

namespace DevHive.Data.Models
{
	public class ProfilePicture: IProfilePicture
	{
		public Guid Id { get; set; }

		public Guid UserId { get; set; }
		public User User { get; set; }

		public string PictureURL { get; set; }
	}
}