LANCommander/LANCommander.SDK/Models/CheckForUpdateResponse.cs

15 lines
317 B
C#
Raw Permalink Normal View History

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; }
}
}