Ajout de HelloFresh

This commit is contained in:
2025-09-03 20:17:50 +02:00
parent bcef0a472b
commit d287112b7d
429 changed files with 82881 additions and 22074 deletions

View File

@@ -0,0 +1,25 @@
using System;
using System.Collections.Generic;
namespace administration.Models.Finances;
public partial class AdditionalSource
{
public int Id { get; set; }
public string TransactionType { get; set; } = null!;
public int Amount { get; set; }
public string Description { get; set; } = null!;
public DateOnly Date { get; set; }
public int LogoId { get; set; }
public int UserId { get; set; }
public virtual Logo Logo { get; set; } = null!;
public virtual User User { get; set; } = null!;
}