Move solution and projects to src
This commit is contained in:
16
src/Ryujinx.Ava/UI/Models/TimeZone.cs
Normal file
16
src/Ryujinx.Ava/UI/Models/TimeZone.cs
Normal file
@@ -0,0 +1,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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user