Initial code

This commit is contained in:
2024-09-26 17:48:18 -04:00
parent 716043a901
commit c4cd246fb0
13 changed files with 605 additions and 0 deletions

7
TimeZoneEntry.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace WorldClockStatusWindow;
public class TimeZoneEntry
{
public string Label { get; set; }
public string TimeZoneId { get; set; }
}