using System; namespace Kreta.Core { /// /// VersionInfo /// public class VersionInfo { /// /// Gets or sets the main version. /// /// /// The main version. /// public string MainVersion { get; set; } = Constants.Version.NotAvailable; /// /// Gets or sets the short main version. /// /// /// The short main version. /// public string ShortMainVersion { get; set; } = Constants.Version.NotAvailable; /// /// Gets or sets the assembly creation date time. /// /// /// The assembly creation date time. /// public DateTime AssemblyCreationDateTime { get; set; } /// /// Gets or sets the name of the branch. /// /// /// The name of the branch. /// public string BranchName { get; set; } = Constants.Version.NotAvailable; /// /// Gets or sets the commit number. /// /// /// The commit number. /// public string CommitNumber { get; set; } = Constants.Version.NotAvailable; } }