client/src/Iri.Modernisation.Data/Models/AnnotationSession.cs
author totetm <>
Wed, 10 Feb 2010 14:56:46 +0100
changeset 41 b51a10574e7f
parent 0 249d70e7b32d
permissions -rw-r--r--
LeftClick on an element in BookTimeLine set time at begining of the element.

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