You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Bookmark.cs 234B

123456789101112
  1. using System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Novacode
  5. {
  6. public class Bookmark
  7. {
  8. public string Name { get; set; }
  9. public Paragraph Paragraph { get; set; }
  10. }
  11. }