bloxstrap/Bloxstrap/Models/DeployInfo.cs
2023-02-03 17:37:10 +00:00

16 lines
356 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bloxstrap.Models
{
public class DeployInfo
{
public string Timestamp { get; set; } = null!;
public string Version { get; set; } = null!;
public string VersionGuid { get; set; } = null!;
}
}