blob: 38bc82b6e63c50ca3d76be47c5649635e586109c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.MachineStudio.Common.Update;
namespace Tango.MachineStudio.UI.Messages
{
public class ForcedUpdateMessage
{
public CheckForUpdatesResponse UpdateResponse { get; set; }
}
}
|