1
0
mirror of https://github.com/ncblakely/GiantsTools synced 2024-06-29 01:01:45 +02:00
GiantsTools/Giants.Launcher/Updater/UpdateInfo.cs

12 lines
223 B
C#
Raw Normal View History

namespace Giants.Launcher
{
public class UpdateInfo
{
2020-08-13 06:58:53 +02:00
public int FileSize { get; set; }
2020-08-13 06:58:53 +02:00
public string FilePath { get; set; }
2020-08-13 06:58:53 +02:00
public ApplicationType ApplicationType { get; set; }
}
}