mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
14 lines
294 B
C#
14 lines
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; }
|
||
|
}
|
||
|
}
|