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