client/src/Iri.Modernisation.Data/Models/AnnotationSession.cs
author Matthieu Totet
Mon, 04 Jan 2010 10:29:39 +0100
changeset 27 f292db96b050
parent 0 249d70e7b32d
permissions -rw-r--r--
Generalization of Book Structure

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;}
        
    }
}