Files
administration/Models/HelloFresh/SavingRecette.cs
2025-09-03 20:17:50 +02:00

14 lines
263 B
C#

using System;
using System.Collections.Generic;
namespace administration.Models.HelloFresh;
public partial class SavingRecette
{
public int Id { get; set; }
public string IdSavingRecette { get; set; } = null!;
public int UserId { get; set; }
}