generated from wenjy/Sln.Iot
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
585 B
C#
30 lines
585 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Iot.Config
|
|
{
|
|
/// <summary>
|
|
/// CFX配置
|
|
/// </summary>
|
|
public class CFXConfig
|
|
{
|
|
/// <summary>
|
|
/// CFXHandle
|
|
/// </summary>
|
|
public string CFXHandle { get; set; }
|
|
|
|
/// <summary>
|
|
/// 本地URI
|
|
/// </summary>
|
|
public string LocalURI { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上位系统URI
|
|
/// </summary>
|
|
public int UpperURI { get; set; }
|
|
}
|
|
}
|