public Annotation(string id, Body body, Target target) { this.id = id; this.type = "oa:Annotation"; this.body = body; this.target = target; }
public Annotation(Body body, Target target) { this.id = Guid.NewGuid().ToString(); this.type = "oa:Annotation"; this.body = body; this.target = target; }