Projekt

Obecné

Profil

Stáhnout (486 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using Models.Enums;
2
using System;
3
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
    public class AnnotationTag : AnnotationTagGeneric
13
    {
14
        /// <summary>
15
        /// The annotation the annotation tag is linked to
16
        /// </summary>
17
        public Annotation Annotation { get; set; }
18
    }
19
}
(2-2/14)