client/src/Iri.Modernisation.Data/Models/Annotation.cs
changeset 0 249d70e7b32d
child 28 2d4ec5ab2a40
equal deleted inserted replaced
-1:000000000000 0:249d70e7b32d
       
     1 using System;
       
     2 using System.Net;
       
     3 using System.Windows;
       
     4 using System.Windows.Controls;
       
     5 using System.Windows.Documents;
       
     6 using System.Windows.Ink;
       
     7 using System.Windows.Input;
       
     8 using System.Windows.Media;
       
     9 using System.Windows.Media.Animation;
       
    10 using System.Windows.Shapes;
       
    11 using System.Collections.Generic;
       
    12 ///
       
    13 namespace Iri.Modernisation.Data.Models
       
    14 {
       
    15     /// <summary>
       
    16     /// Classe d'annotation
       
    17     /// </summary>
       
    18     public class Annotation : PolemicElement
       
    19     {
       
    20         /// <summary>
       
    21         /// Type de l'annotation
       
    22         /// </summary>
       
    23         public PolemicElementType Type { get; set; }
       
    24 
       
    25         /// <summary>
       
    26         /// Auteur de l'annotation
       
    27         /// </summary>
       
    28         public User Contributer { get; set; }
       
    29 
       
    30         /// <summary>
       
    31         /// Constructeur
       
    32         /// </summary>
       
    33         /// <param name="Vc">VideoChapter auquel l'annotation est ratachée</param>
       
    34         public Annotation(VideoChapter Vc)
       
    35             : base(Vc)
       
    36         {
       
    37         }
       
    38     }
       
    39 }