mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
14 lines
430 B
C#
14 lines
430 B
C#
using System;
|
|
|
|
namespace Giants.Services
|
|
{
|
|
public class VersionInfo : DataContract.V1.VersionInfo, IIdentifiable
|
|
{
|
|
public string id => GenerateId(this.AppName, this.BranchName ?? BranchConstants.DefaultBranchName);
|
|
|
|
public string DocumentType => nameof(VersionInfo);
|
|
|
|
public static string GenerateId(string appName, string branchName) => $"{nameof(VersionInfo)}-{appName}-{branchName}";
|
|
}
|
|
}
|