namespace SpdUp.Models; /// /// Represents a Windows service relevant to the boost process. /// public sealed class ServiceEntry { public string ServiceName { get; init; } = string.Empty; public string DisplayName { get; init; } = string.Empty; public string Status { get; set; } = "Unknown"; public bool WasRunningBeforeBoost { get; set; } public string Description { get; init; } = string.Empty; }