mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Migrate media tags decoding window from Eto.Forms to Avalonia.
This commit is contained in:
12
Aaru.Gui/Models/MediaTagModel.cs
Normal file
12
Aaru.Gui/Models/MediaTagModel.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using Aaru.CommonTypes.Enums;
|
||||
|
||||
namespace Aaru.Gui.Models
|
||||
{
|
||||
public class MediaTagModel
|
||||
{
|
||||
public MediaTagType Tag { get; set; }
|
||||
public byte[] Data { get; set; }
|
||||
public string Decoded { get; set; }
|
||||
public string Name => Tag.ToString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user