client/src/Iri.Modernisation.Data/Models/AnnotationSession.cs
author totetm <>
Fri, 12 Feb 2010 12:24:46 +0100
changeset 45 de06fa7242ae
parent 0 249d70e7b32d
permissions -rw-r--r--
Fixed| agrandir la zonne d'affichage de la time line quand la taille des bloques d'annotations sont supèrieur a sa hauteur Fixed| faire fonctionner le bouton collapse des zonnes d'affichage des timeline

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Iri.Modernisation.Data.Models
{
    public class AnnotationSession
    {
        public User User { get; set; }
        public List<Annotation> Annotations {get;set;}
        public List<PolemicLink> PolemicLinks{get;set;}
        
    }
}