Guest User

Untitled

a guest
May 27th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace HelloRaven.model
  7. {
  8. class Channel
  9. {
  10. //RavenDB document identifier
  11. public string Id { get; set; }
  12.  
  13. public string Name { get; set; }
  14. public IList<string> Tags { get; set; }
  15. }
  16. }
Add Comment
Please, Sign In to add comment