Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
emmauss committed Jan 13, 2022
1 parent 46a4aae commit 6feaaf0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Ryujinx.Ava/Ui/Models/ProfileImageModel.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
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; }
}
}

0 comments on commit 6feaaf0

Please sign in to comment.