mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 06:45:37 +01:00
14 lines
343 B
C#
14 lines
343 B
C#
using System;
|
|
|
|
namespace Giants.Services
|
|
{
|
|
public class VersionInfo : DataContract.VersionInfo, IIdentifiable
|
|
{
|
|
public string id => GenerateId(this.AppName);
|
|
|
|
public string DocumentType => nameof(VersionInfo);
|
|
|
|
public static string GenerateId(string gameName) => $"{nameof(VersionInfo)}-{gameName}";
|
|
}
|
|
}
|