@@ -12,7 +12,7 @@ public partial class GalleryImageService : IGalleryImageService
1212 this._localizationService = localizationService;
1313 }
1414
15- public async ValueTask<IImmutableList<GalleryImageModel >> GetGalleryImagesWithoutReswAsync(CancellationToken ct)
15+ public async ValueTask<IImmutableList<GalleryImage >> GetGalleryImagesWithoutReswAsync(CancellationToken ct)
1616 {
1717 string cultureString = _localizationService.CurrentCulture.TwoLetterISOLanguageName;
1818 var galleryImages = cultureString switch
@@ -29,33 +29,33 @@ public partial class GalleryImageService : IGalleryImageService
2929
3030 #region German gallery descriptions
3131
32- private async ValueTask<IImmutableList<GalleryImageModel >> GetDEGalleryImagesAsync(CancellationToken ct)
32+ private async ValueTask<IImmutableList<GalleryImage >> GetDEGalleryImagesAsync(CancellationToken ct)
3333 {
3434 // Simulate a delay to mimic an async operation (e.g., fetching from a database or API)
3535 await Task.Delay(TimeSpan.FromSeconds(2),ct);
36- var galleryImages = new GalleryImageModel []
36+ var galleryImages = new GalleryImage []
3737 {
38- new GalleryImageModel (
38+ new GalleryImage (
3939 Title: "Fluffy",
4040 ImageLocation: "ms-appx:///Assets/Images/img_20240531_141928.jpg",
4141 Description: "Ein kleiner Kuschelmeister, der es liebt, im Zentrum der aufmerksamkeit zu stehen und sanft gekrault zu werden."),
42- new GalleryImageModel (
42+ new GalleryImage (
4343 Title: "Snowball",
4444 ImageLocation: "ms-appx:///Assets/Images/img_20230302_175758.jpg",
4545 Description: "Ein verspielter Wirbelwind, der mit seinen Hüpfern jeden Raum zum Leben erweckt und dabei immer ein Lächeln hervorruft."),
46- new GalleryImageModel (
46+ new GalleryImage (
4747 Title: "Buddy",
4848 ImageLocation: "ms-appx:///Assets/Images/img_20240602_130506.jpg",
4949 Description: "Ein neugieriger Abenteurer, der ständig mit tapsigen Pfoten und seinem aufgeweckten Näschen die Welt erkundet."),
50- new GalleryImageModel (
50+ new GalleryImage (
5151 Title: "Coco",
5252 ImageLocation: "ms-appx:///Assets/Images/img_20240721_130401.jpg",
5353 Description: "Ein kleiner Genießer, der sich nichts sehnlicher wünscht, als den ganzen Tag an frischem Grünzeug zu knabbern."),
54- new GalleryImageModel (
54+ new GalleryImage (
5555 Title: "Bunny",
5656 ImageLocation: "ms-appx:///Assets/Images/img_20240721_130831.jpg",
5757 Description: "Ein absoluter Herzensbrecher, der sich mit einem einzigen Blick tief in die Herzen seiner Menschen schleicht."),
58- new GalleryImageModel (
58+ new GalleryImage (
5959 Title: "Thumper",
6060 ImageLocation: "ms-appx:///Assets/Images/img_20240721_132103.jpg",
6161 Description: "Ein lebhafter Freigeist, der mit seinen lustigen Sprüngen und Hüpfern für pure Lebensfreude sorgt."),
@@ -67,33 +67,33 @@ public partial class GalleryImageService : IGalleryImageService
6767
6868 #region English gallery descriptions
6969
70- private async ValueTask<IImmutableList<GalleryImageModel >> GetENGalleryImagesAsync(CancellationToken ct)
70+ private async ValueTask<IImmutableList<GalleryImage >> GetENGalleryImagesAsync(CancellationToken ct)
7171 {
7272 // Simulate a delay to mimic an async operation (e.g., fetching from a database or API)
7373 await Task.Delay(TimeSpan.FromSeconds(2), ct);
74- var galleryImages = new GalleryImageModel []
74+ var galleryImages = new GalleryImage []
7575 {
76- new GalleryImageModel (
76+ new GalleryImage (
7777 Title: "Fluffy",
7878 ImageLocation: "ms-appx:///Assets/Images/img_20240531_141928.jpg",
7979 Description: "A little snuggle expert who loves curling up in blankets and soaking up gentle attention."),
80- new GalleryImageModel (
80+ new GalleryImage (
8181 Title: "Snowball",
8282 ImageLocation: "ms-appx:///Assets/Images/img_20230302_175758.jpg",
8383 Description: "A playful bundle of energy who hops around spreading joy wherever they go."),
84- new GalleryImageModel (
84+ new GalleryImage (
8585 Title: "Buddy",
8686 ImageLocation: "ms-appx:///Assets/Images/img_20240602_130506.jpg",
8787 Description: "A curious explorer, always investigating the world with tiny paws and an inquisitive nose."),
88- new GalleryImageModel (
88+ new GalleryImage (
8989 Title: "Coco",
9090 ImageLocation: "ms-appx:///Assets/Images/img_20240721_130401.jpg",
9191 Description: "A little foodie who would happily spend all day nibbling on fresh treats."),
92- new GalleryImageModel (
92+ new GalleryImage (
9393 Title: "Bunny",
9494 ImageLocation: "ms-appx:///Assets/Images/img_20240721_130831.jpg",
9595 Description: "A charming sweetheart who wins hearts with just one adorable glance."),
96- new GalleryImageModel (
96+ new GalleryImage (
9797 Title: "Thumper",
9898 ImageLocation: "ms-appx:///Assets/Images/img_20240721_132103.jpg",
9999 Description: "A lively free spirit who bounces around spreading cheer and fun."),
0 commit comments