blob: 48aa8ffaa53ef5bbc919a178a1fa8069d90cd965 (
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.RelationModels
{
[Table("PostAttachments")]
public class PostAttachments
{
public Guid Id { get; set; }
public Post Post { get; set; }
public string FileUrl { get; set; }
}
}
|