GiantsTools/Giants.Launcher/Updater/UpdateInfo.cs

13 lines
253 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; }
}
}