blob: d5b1001e6242f5a2db42d226bdbcccccc9f5bf9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
namespace Tango.PPC.Common.Messages
{
/// <summary>
/// Occurs when the machine settings has changed.
/// </summary>
public class MachineSettingsSavedMessage
{
/// <summary>
/// Gets or sets the machine.
/// </summary>
public Machine Machine { get; set; }
}
}
|