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