aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Windows/TimeZone.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Ava/Ui/Windows/TimeZone.cs')
-rw-r--r--Ryujinx.Ava/Ui/Windows/TimeZone.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Ryujinx.Ava/Ui/Windows/TimeZone.cs b/Ryujinx.Ava/Ui/Windows/TimeZone.cs
new file mode 100644
index 00000000..e6806f15
--- /dev/null
+++ b/Ryujinx.Ava/Ui/Windows/TimeZone.cs
@@ -0,0 +1,16 @@
+namespace Ryujinx.Ava.Ui.Windows
+{
+ public class TimeZone
+ {
+ public TimeZone(string utcDifference, string location, string abbreviation)
+ {
+ UtcDifference = utcDifference;
+ Location = location;
+ Abbreviation = abbreviation;
+ }
+
+ public string UtcDifference { get; set; }
+ public string Location { get; set; }
+ public string Abbreviation { get; set; }
+ }
+} \ No newline at end of file