Show decoded and hex view of data taken from tested media.

This commit is contained in:
2019-11-20 00:13:42 +00:00
parent 76f7f226f0
commit 4e7af0aca3
4 changed files with 380 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
namespace DiscImageChef.Server.Models
{
public class TestedMediaDataModel
{
public int TestedMediaId { get; set; }
public string DataName { get; set; }
public string RawDataAsHex { get; set; }
public string Decoded { get; set; }
}
}