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

15
Models/Finances/Logo.cs Normal file
View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
namespace administration.Models.Finances;
public partial class Logo
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public byte[]? Image { get; set; }
public virtual ICollection<AdditionalSource> AdditionalSources { get; set; } = new List<AdditionalSource>();
}