aboutsummaryrefslogtreecommitdiff
path: root/src/Data/DevHive.Data.Models/RelationalModels/PostAttachments.cs
blob: 40ce861d448808c5ac181370202b5263d1c29bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.ComponentModel.DataAnnotations.Schema;
using DevHive.Data.Models;

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

		public virtual Post Post { get; set; }

		public string FileUrl { get; set; }
	}
}