mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
9 lines
196 B
C#
9 lines
196 B
C#
|
|
namespace Aaru.Gui.Models
|
||
|
|
{
|
||
|
|
public class ScsiPageModel
|
||
|
|
{
|
||
|
|
public byte[] Data;
|
||
|
|
public string Page { get; set; }
|
||
|
|
public string Description { get; set; }
|
||
|
|
}
|
||
|
|
}
|