1e56f6e6d3
- Refactoring Projects in the solution
16 lines
333 B
C#
16 lines
333 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Client.Config.SubModels
|
|
{
|
|
public class VendorHmi
|
|
{
|
|
public Boolean Enabled { get; set; }
|
|
public ushort Type { get; set; } /* 0: Demo - 1: Fanuc - 2: Siemens - 3: Osai */
|
|
|
|
}
|
|
}
|