Migrate image entropy window from Eto.Forms to Avalonia.

This commit is contained in:
2020-04-12 22:29:24 +01:00
parent fa58b84dc6
commit afcd085bfe
8 changed files with 493 additions and 339 deletions

View File

@@ -0,0 +1,9 @@
namespace Aaru.Gui.Models
{
public class TrackEntropyModel
{
public string Track { get; set; }
public string Entropy { get; set; }
public string UniqueSectors { get; set; }
}
}