namespace Tau.Acuvim.Console.Models; public class FirmwareVersion { public Guid Id { get; set; } public string Version { get; set; } = string.Empty; public string Filename { get; set; } = string.Empty; public string FilePath { get; set; } = string.Empty; public int FileSize { get; set; } public string Checksum { get; set; } = string.Empty; public string? ReleaseNotes { get; set; } public string? Hardware { get; set; } public bool Mandatory { get; set; } public bool Active { get; set; } = true; public string? UploadedBy { get; set; } public DateTime CreatedAt { get; set; } = DateTime.UtcNow; }