LANCommander/LANCommander.SDK/Models/CheckForUpdateResponse.cs

14 lines
317 B
C#

using Semver;
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Models
{
public class CheckForUpdateResponse
{
public bool UpdateAvailable { get; set; }
public string Version { get; set; }
public string DownloadUrl { get; set; }
}
}