mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-17 02:31:28 -07:00
10 lines
239 B
C#
10 lines
239 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class DeployInfo
|
|
{
|
|
public string Timestamp { get; set; } = null!;
|
|
public string Version { get; set; } = null!;
|
|
public string VersionGuid { get; set; } = null!;
|
|
}
|
|
}
|