22 lines
592 B
C#
22 lines
592 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ScaBox30.Model
|
|
{
|
|
class Config
|
|
{
|
|
public string iphost { get; set; }
|
|
public int cleardelay { get; set; }
|
|
public int interval { get; set; }
|
|
public string ipscanner { get; set; }
|
|
public string usbprinter { get; set; }
|
|
public string ipprinter { get; set; }
|
|
public string printertype { get; set; }
|
|
public string resultado { get; set; }
|
|
public Boolean printerenabled { get; set; }
|
|
}
|
|
}
|