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