mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-18 00:21:33 -07:00
20 lines
495 B
C#
20 lines
495 B
C#
using System.Text.Json.Serialization;
|
|
using System;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class ClientVersion
|
|
{
|
|
[JsonPropertyName("version")]
|
|
public string Version { get; set; } = null!;
|
|
|
|
[JsonPropertyName("clientVersionUpload")]
|
|
public string VersionGuid { get; set; } = null!;
|
|
|
|
[JsonPropertyName("bootstrapperVersion")]
|
|
public string BootstrapperVersion { get; set; } = null!;
|
|
|
|
public DateTime? Timestamp { get; set; }
|
|
}
|
|
}
|