mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
- Fixed channel arg not being set when launching game client - Fixed preferences tooltip hiding too early - Fixed last deploy info not showing for the right channel - Last deploy info now shows deploy timestamp according to system timezone
16 lines
341 B
C#
16 lines
341 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Models
|
|
{
|
|
public class VersionDeploy
|
|
{
|
|
public string? VersionGuid { get; set; }
|
|
public DateTime? Timestamp { get; set; }
|
|
public string? FileVersion { get; set; }
|
|
}
|
|
}
|