| changeset 0 | 249d70e7b32d |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/Iri.Modernisation.Data/Models/AnnotationSession.cs Wed Nov 18 15:30:31 2009 +0100 @@ -0,0 +1,14 @@ +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;} + + } +}