@@ -14,63 +14,63 @@ public partial class Projects
1414 Description = "A port of PKHeX for web, built wih Blazor" ,
1515 Url = "https://www.pkmds.app/" ,
1616 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /PKMDS-Blazor",
17- Screenshots = [ ]
17+ Thumbnails = [ ]
1818 } , // PKMDS for Web
1919 new ( )
2020 {
2121 Name = "Sound Test" ,
2222 Description = "Messing around with the JavaScript tone APIs in Blazor" ,
2323 Url = $ "{ GitHubPagesBaseUrl } /SoundTest/",
2424 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /SoundTest",
25- Screenshots = [ ]
25+ Thumbnails = [ ]
2626 } , // Sound Test
2727 new ( )
2828 {
2929 Name = "Tic Tac Toe Blazor" ,
3030 Description = "A Tic Tac Toe game for web, built with Blazor" ,
3131 Url = $ "{ GitHubPagesBaseUrl } /TicTacToeBlazor/",
3232 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /TicTacToeBlazor",
33- Screenshots = [ ]
33+ Thumbnails = [ ]
3434 } , // Tic Tac Toe Blazor
3535 new ( )
3636 {
3737 Name = "Four Is The Magic Number!" ,
3838 Description = "A neat party trick, built with Blazor" ,
3939 Url = $ "{ GitHubPagesBaseUrl } /FourMagicNumberGame/",
4040 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /FourMagicNumberGame",
41- Screenshots = [ ]
41+ Thumbnails = [ ]
4242 } , // Four Is The Magic Number!
4343 new ( )
4444 {
4545 Name = "Barcode Helper" ,
4646 Description = "Solve the missing digit in a UPC-12, built with Blazor" ,
4747 Url = $ "{ GitHubPagesBaseUrl } /BarcodeHelper/",
4848 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /BarcodeHelper",
49- Screenshots = [ ]
49+ Thumbnails = [ ]
5050 } , // Barcode Helper
5151 new ( )
5252 {
5353 Name = "Tired Doctor Manhattan" ,
5454 Description = "Doctor Manhattan is tired of stuff, built with Blazor" ,
5555 Url = $ "{ GitHubPagesBaseUrl } /TiredDoctorManhattan/",
5656 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /TiredDoctorManhattan",
57- Screenshots = [ ]
57+ Thumbnails = [ ]
5858 } , // Tired Doctor Manhattan
5959 new ( )
6060 {
6161 Name = "Minecraft Command Builder" ,
6262 Description = "A tool to help build Minecraft commands, built with Blazor" ,
6363 Url = $ "{ GitHubPagesBaseUrl } /MinecraftCommandBuilder/",
6464 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /MinecraftCommandBuilder",
65- Screenshots = [ ]
65+ Thumbnails = [ ]
6666 } , // Minecraft Command Builder
6767 new ( )
6868 {
6969 Name = "D&D Critical Hit Calculator" ,
7070 Description = "Honestly, this is just for me and my D&D friends." ,
7171 Url = $ "{ GitHubPagesBaseUrl } /DnDCritCalculator/",
7272 GitHubUrl = $ "{ Constants . MyGitHubBaseUrl } /DnDCritCalculator",
73- Screenshots = [ ]
73+ Thumbnails = [ ]
7474 } // D&D Critical Hit Calculator
7575 ] ;
7676
@@ -85,11 +85,11 @@ private readonly record struct Project
8585 public string ? GitHubUrl { get ; init ; }
8686
8787 // ReSharper disable once CollectionNeverUpdated.Local
88- public List < ProductImage > Screenshots { get ; init ; }
88+ public List < ProjectThumbnails > Thumbnails { get ; init ; }
8989 }
9090
9191 [ SuppressMessage ( "ReSharper" , "UnusedAutoPropertyAccessor.Local" ) ]
92- private readonly record struct ProductImage
92+ private readonly record struct ProjectThumbnails
9393 {
9494 public required string Url { get ; init ; }
9595
0 commit comments