Browse Source

Excluded Images from Update entity

master
Daniel Gyulai 4 years ago
parent
commit
a83434caad
  1. 3
      CoviDok/Data/Model/Update.cs

3
CoviDok/Data/Model/Update.cs

@ -1,6 +1,7 @@
using CoviDok.Api;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
@ -14,6 +15,8 @@ namespace CoviDok.Data.Model
public Role SenderRole { get; set; }
public string Content { get; set; }
public DateTime CreatedDate { get; set; }
[NotMapped]
public ICollection<string> Images { get; set; }
public Update()
{

Loading…
Cancel
Save