diff --git a/ElectronNET.API/Entities/ProcessVersions.cs b/ElectronNET.API/Entities/ProcessVersions.cs index ce61fcb..df41db6 100644 --- a/ElectronNET.API/Entities/ProcessVersions.cs +++ b/ElectronNET.API/Entities/ProcessVersions.cs @@ -1,18 +1,10 @@ namespace ElectronNET.API { /// - /// + /// An object listing the version strings specific to Electron /// - public class ProcessVersions - { - /// - /// Gets or sets a value representing Chrome's version string. - /// - public string Chrome { get; set; } - - /// - /// Gets or sets a value representing Electron's version string. - /// - public string Electron { get; set; } - } -} \ No newline at end of file + /// Value representing Chrome's version string + /// Value representing Electron's version string + /// + public record ProcessVersions(string Chrome, string Electron); +} \ No newline at end of file