blob: 8c814fc454244e4550b5b2726b8ab6b249a034cf (
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 Post Post { get; set; }
public string FileUrl { get; set; }
}
}
|