aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Ava/UI/Models/TimeZone.cs
blob: cb6cc2fdc5e81843e2937ab33d0f178ca7cde98f (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; }
    }
}