Projekt

Obecné

Profil

Stáhnout (552 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using System;
2
using System.Collections.Generic;
3
using System.ComponentModel.DataAnnotations;
4
using System.ComponentModel.DataAnnotations.Schema;
5
using System.Linq;
6
using System.Text;
7
using System.Threading.Tasks;
8

    
9
namespace Core.Entities
10
{
11
   /* public class AnnotationClass : BaseEntity
12
    {
13
        [ForeignKey("Class")]
14
        public int ClassId { get; set; }
15
        public Class Class { get; set; }
16

    
17
        [ForeignKey("Annotation")]
18
        public int AnnotationId { get; set; }
19
        public Annotation Annotation { get; set; }
20
    }*/
21
}
(2-2/12)