1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-09-20 23:21:36 +02:00
GiantsTools/Giants.Launcher/Updater/UpdateInfo.cs
2020-08-11 01:29:45 -07:00

13 lines
235 B
C#

using System;
using System.IO;
namespace Giants.Launcher
{
public class UpdateInfo
{
public int FileSize { get; set; }
public string FilePath { get; set; }
public ApplicationType ApplicationType { get; set; }
}
}