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