Move solution and projects to src
This commit is contained in:
19
src/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs
Normal file
19
src/Ryujinx.Ava/UI/Models/TitleUpdateModel.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using LibHac.Ns;
|
||||
using Ryujinx.Ava.Common.Locale;
|
||||
|
||||
namespace Ryujinx.Ava.UI.Models
|
||||
{
|
||||
public class TitleUpdateModel
|
||||
{
|
||||
public ApplicationControlProperty Control { get; }
|
||||
public string Path { get; }
|
||||
|
||||
public string Label => LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.TitleUpdateVersionLabel, Control.DisplayVersionString.ToString());
|
||||
|
||||
public TitleUpdateModel(ApplicationControlProperty control, string path)
|
||||
{
|
||||
Control = control;
|
||||
Path = path;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user