aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/ProfilePicture.cs
blob: 5877861aeefe80b250508a0ba5ce7c981875be78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace DevHive.Data.Models
{
	[Table("ProfilePictures")]
	public class ProfilePicture
	{
		public Guid Id { get; set; }

		public string PictureURL { get; set; }
	}
}