aboutsummaryrefslogtreecommitdiff
path: root/src/DevHive.Data/Models/Post.cs
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-02-05 17:46:59 +0200
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-02-05 17:46:59 +0200
commita0a048d1fc6672a6478169f3c9139d9e5a6ff474 (patch)
tree441ae3b35e2f6b55c9912e70f8a0f304ba26bc83 /src/DevHive.Data/Models/Post.cs
parent60ed435203f0c60d4c6fabe77aa4e87656aaf8c1 (diff)
downloadDevHive-a0a048d1fc6672a6478169f3c9139d9e5a6ff474.tar
DevHive-a0a048d1fc6672a6478169f3c9139d9e5a6ff474.tar.gz
DevHive-a0a048d1fc6672a6478169f3c9139d9e5a6ff474.zip
Implemented post attachments, which move post file urls to their own table; updated post repository and post service to work with them (but didn't update service or web models)
Diffstat (limited to 'src/DevHive.Data/Models/Post.cs')
-rw-r--r--src/DevHive.Data/Models/Post.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DevHive.Data/Models/Post.cs b/src/DevHive.Data/Models/Post.cs
index 95d7ac8..3f3d8c9 100644
--- a/src/DevHive.Data/Models/Post.cs
+++ b/src/DevHive.Data/Models/Post.cs
@@ -2,6 +2,7 @@ using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using DevHive.Data.Interfaces.Models;
+using DevHive.Data.RelationModels;
namespace DevHive.Data.Models
{
@@ -20,6 +21,6 @@ namespace DevHive.Data.Models
public Rating Rating { get; set; } = new();
- public List<string> FileUrls { get; set; } = new();
+ public List<PostAttachments> Attachments { get; set; } = new();
}
}