12 lines
310 B
C#
12 lines
310 B
C#
|
namespace DataAccess.Models;
|
|||
|
|
|||
|
public class WunschInfoModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string BildPrompt { get; set; }
|
|||
|
public string Wunsch { get; set; }
|
|||
|
public string BildBeschreibung { get; set; }
|
|||
|
public DateTime Datum { get; set; }
|
|||
|
public string GPTModel { get; set; }
|
|||
|
}
|