mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 23:00:17 +00:00
16 lines
No EOL
441 B
C#
16 lines
No EOL
441 B
C#
namespace Ryujinx.Ava.Ui.Models
|
|
{
|
|
internal 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; }
|
|
}
|
|
} |