bloxstrap/Bloxstrap/Models/VersionDeploy.cs
pizzaboxer 0a2382d590 v1.4.0: Build channel support, use rbxcdn, cleanup
thanks clonetrooper for reminding me rbxcdn exists - don't know why i used s3 directly since it's so much slower
2022-08-26 12:48:35 +01:00

16 lines
334 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 string? Date { get; set; }
public string? FileVersion { get; set; }
}
}