Projekt

Obecné

Profil

Stáhnout (448 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 fe0ccf07 Vojtěch Bartička
using System;
2
using System.Collections.Generic;
3 8c9ce202 Vojtěch Bartička
using System.ComponentModel.DataAnnotations.Schema;
4 fe0ccf07 Vojtěch Bartička
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7
8
namespace Core.Entities
9
{
10
    public class FinalAnnotation : Annotation
11
    {
12 a35cb648 Vojtěch Bartička
        /// <summary>
13
        /// List of annotations that were used to create the final annotation
14
        /// </summary>
15 fe0ccf07 Vojtěch Bartička
        public List<Annotation> Annotations { get; set; } = new();
16
    }
17
}