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

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

		public string PictureURL { get; set; }
	}
}