mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 11:14:27 +00:00
9 lines
261 B
C#
9 lines
261 B
C#
namespace Aaru.Server.Database.Models;
|
|
|
|
public class TestedMediaDataModel
|
|
{
|
|
public int TestedMediaId { get; set; }
|
|
public string DataName { get; set; }
|
|
public string RawDataAsHex { get; set; }
|
|
public string Decoded { get; set; }
|
|
} |