Projekt

Obecné

Profil

Stáhnout (325 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel.DataAnnotations.Schema;
4
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
        public List<Annotation> Annotations { get; set; } = new();
13
    }
14
}
(9-9/14)