25 lines
476 B
C#
25 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace JingGong.Abp.Print.GoDEX
|
|
{
|
|
/// <summary>
|
|
/// 打印机配置
|
|
/// </summary>
|
|
public class GoDEXCommunication
|
|
{
|
|
/// <summary>
|
|
/// 地址
|
|
/// </summary>
|
|
public string Host { get; set; }
|
|
|
|
/// <summary>
|
|
/// 端口
|
|
/// </summary>
|
|
public int Port { get; set; }
|
|
}
|
|
}
|