Advertisement
smeacham

Item.cs

Jun 7th, 2016
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 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. using SQLite;
  8.  
  9. namespace SQLiteNetPCLVS
  10. {
  11.     public class Item
  12.     {
  13.         [PrimaryKey, AutoIncrement]
  14.         public int ID { get; set; }
  15.         [MaxLength(15)]
  16.         public string Name { get; set; }
  17.         [MaxLength(50)]
  18.         public string Description { get; set; }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement