Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace MoneyManage.Entidades
- {
- public class Presupuestos
- {
- [SQLite.PrimaryKey, SQLite.AutoIncrement]
- public int idpresupuesto { get; set; }
- public string nombre { get; set; }
- //aqui es donde se elige el tipo coffeeshop, fuel, todo eso.
- public string tipo { get; set; }
- public string amount { get; set; }
- public string date { get; set; }
- public string descripcion { get; set; }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement