30 lines
546 B
C#
30 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace administration.Models;
|
|
|
|
public partial class Expense
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Rent { get; set; }
|
|
|
|
public int Electricity { get; set; }
|
|
|
|
public int Trash { get; set; }
|
|
|
|
public int Wifi { get; set; }
|
|
|
|
public int Groceries { get; set; }
|
|
|
|
public DateOnly Date { get; set; }
|
|
|
|
public int Saving { get; set; }
|
|
|
|
public int Insurance { get; set; }
|
|
|
|
public int UserId { get; set; }
|
|
|
|
public virtual User User { get; set; } = null!;
|
|
}
|