Files
Aaru/Aaru.Gui/Models/ChecksumModel.cs

9 lines
210 B
C#
Raw Normal View History

namespace Aaru.Gui.Models
{
public class ChecksumModel
{
public string Track { get; set; }
public string Algorithm { get; set; }
public string Hash { get; set; }
}
}