Files
2025-09-03 20:17:50 +02:00

30 lines
555 B
C#

using System;
using System.Collections.Generic;
namespace administration.Models.Finances;
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!;
}