mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 09:01:32 -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!;
|
|
}
|
|
}
|