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

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; }
	}
}