namespace BurnOutSharp { /// /// Struct representing protection scanning progress /// public struct ProtectionProgress { /// /// Filename to report progress for /// public string Filename { get; private set; } /// /// Value between 0 and 1 representign the percentage completed /// public float Percentage { get; private set; } /// /// Protection information to report /// public string Protection { get; private set; } public ProtectionProgress(string filename, float percentage, string protection) { this.Filename = filename; this.Percentage = percentage; this.Protection = protection; } } }