mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 18:11:27 -07:00
thanks clonetrooper for reminding me rbxcdn exists - don't know why i used s3 directly since it's so much slower
16 lines
334 B
C#
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; }
|
|
}
|
|
}
|