- using System;
- using System.Collections.Generic;
- namespace SKMC.Api.Common.Version
- {
- public class ProjectVersion
- {
- public string ProjectName { get; set; }
- public string RootCommitHash { get; set; }
- public DateTime BuildTime { get; set; }
- public List<ModuleVersion> Modules { get; set; } = new List<ModuleVersion>();
- public string ErrorMessage { get; set; }
- }
- }
|