Projekt

Obecné

Profil

Stáhnout (382 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 15c88dc1 Vojtěch Bartička
using Models.Enums;
2
using System;
3 caa28567 Vojtěch Bartička
using System.Collections.Generic;
4
using System.ComponentModel.DataAnnotations;
5
using System.ComponentModel.DataAnnotations.Schema;
6
using System.Linq;
7
using System.Text;
8
using System.Threading.Tasks;
9
10
namespace Core.Entities
11
{
12 2c9afc72 Vojtěch Bartička
    public class AnnotationTag : AnnotationTagGeneric
13 caa28567 Vojtěch Bartička
    {
14
        public Annotation Annotation { get; set; }
15
    }
16
}