aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Models/TimeZone.cs
blob: a1bad05103122e6a6a807b4cb84fb84ee925145d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}