mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 18:18:32 +00:00
16 lines
440 B
C#
16 lines
440 B
C#
|
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; }
|
||
|
}
|
||
|
}
|