aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/ProfilePicture.cs
blob: 596591e78da74e340e0dd9f767dd21b96e0d17ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 virtual User User { get; set; }

		public string PictureURL { get; set; }
	}
}