Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created October 19, 2022 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/2fd28f429722ba2083b6442036b219e8 to your computer and use it in GitHub Desktop.
Save bjoerntx/2fd28f429722ba2083b6442036b219e8 to your computer and use it in GitHub Desktop.
public class Location {
public double x { get; set; }
public double y { get; set; }
}
public class Pen {
public string type { get; set; }
public double objectWidth { get; set; }
public double objectHeight { get; set; }
}
public class Annotation {
public Pen pen { get; set; }
public string user { get; set; }
public Location location { get; set; }
public long time { get; set; }
public List<Comment> comments { get; set; }
public string id { get; set; }
public string image { get; set; }
}
public class Comment {
public string comment { get; set; }
public List<string> user { get; set; }
public long date { get; set; }
public string id { get; set; }
public string status { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment