smeacham

Item.cs

Jun 2nd, 2016
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.28 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace TrivialDataBindingDemoVS
  8. {
  9.     class Item
  10.     {
  11.         public string Title { get; set; }
  12.         public string Description { get; set; }
  13.     }
  14. }
Add Comment
Please, Sign In to add comment