Advertisement
onzulin

objeto Presupuestos

Oct 26th, 2012
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.46 KB | None | 0 0
  1. namespace MoneyManage.Entidades
  2. {
  3.     public class Presupuestos
  4.     {
  5.         [SQLite.PrimaryKey, SQLite.AutoIncrement]
  6.         public int idpresupuesto { get; set; }
  7.         public string nombre { get; set; }
  8.         //aqui es donde se elige el tipo coffeeshop, fuel, todo eso.
  9.         public string tipo { get; set; }
  10.         public string amount { get; set; }
  11.         public string date { get; set; }
  12.         public string descripcion { get; set; }
  13.  
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement