mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-19 11:00:18 +00:00
14 lines
No EOL
296 B
C#
14 lines
No EOL
296 B
C#
namespace Ryujinx.Ava.Ui.Models
|
|
{
|
|
internal class ProfileImageModel
|
|
{
|
|
public ProfileImageModel(string name, byte[] data)
|
|
{
|
|
Name = name;
|
|
Data = data;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public byte[] Data { get; set; }
|
|
}
|
|
} |