3af42d6c7e
* Add all other windows * addreesed review * Prevent "No Update" option from being deleted * Select no update is the current update is removed from the title update window * fix amiibo crash
14 lines
No EOL
294 B
C#
14 lines
No EOL
294 B
C#
namespace Ryujinx.Ava.Ui.Models
|
|
{
|
|
public class ProfileImageModel
|
|
{
|
|
public ProfileImageModel(string name, byte[] data)
|
|
{
|
|
Name = name;
|
|
Data = data;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public byte[] Data { get; set; }
|
|
}
|
|
} |