Für jedes Bild eigenen Prompt

This commit is contained in:
Simon Lübeß
2023-10-14 14:33:35 +02:00
parent fa75985014
commit dc81c5ce60
14 changed files with 161 additions and 231 deletions

View File

@ -7,4 +7,5 @@ public class BildInfoModel
public string Dateiname { get; set; }
public string ImageModel { get; set; }
public int WunschId { get; set; }
public string Prompt { get; set; }
}

View File

@ -8,4 +8,9 @@ public class WunschInfoModel
public string BildBeschreibung { get; set; }
public DateTime Datum { get; set; }
public string GPTModel { get; set; }
/// <summary>
/// Id eines vorherigen Wunsches, z.B. wenn ein Wunsch überarbeitet wird, wird der original wunsch hier referenziert.
/// Ist <see langword="null"/> für den initialien Wunsch.
/// </summary>
public int? VorherigerWunsch { get; set; }
}