mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
16 lines
356 B
C#
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!;
|
|
}
|
|
}
|