namespace ElectronNET.API.Entities
{
///
///
///
public class SemVer
{
///
///
///
public string Raw { get; set; }
///
///
///
public bool Loose { get; set; }
///
///
///
public SemVerOptions Options { get; set; }
///
///
///
public int Major { get; set; }
///
///
///
public int Minor { get; set; }
///
///
///
public int Patch { get; set; }
///
///
///
public string Version { get; set; }
///
///
///
public string[] Build { get; set; }
///
///
///
public string[] Prerelease { get; set; }
}
///
///
///
public class SemVerOptions {
///
///
///
public bool? Loose { get; set; }
///
///
///
public bool? IncludePrerelease { get; set; }
}
}