35 lines
707 B
Swift
35 lines
707 B
Swift
|
|
//
|
||
|
|
// ICMapKey.swift
|
||
|
|
// flutter_swift
|
||
|
|
//
|
||
|
|
// Created by 凉茶 on 2022/10/8.
|
||
|
|
//
|
||
|
|
|
||
|
|
|
||
|
|
struct ICMapKey{
|
||
|
|
static let Method = "Method";
|
||
|
|
static let Mac = "Mac";
|
||
|
|
static let Password = "Password";
|
||
|
|
static let SSID = "SSID";
|
||
|
|
static let DstId = "DstId";
|
||
|
|
static let StNo = "StNo";
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
static let JsonValue = "JsonValue";
|
||
|
|
static let JsonValue2 = "JsonValue2";
|
||
|
|
static let EnumName = "EnumName";
|
||
|
|
static let BoolValue = "BoolValue";
|
||
|
|
static let ObjectValue = "ObjectValue";
|
||
|
|
static let IntValue = "IntValue";
|
||
|
|
static let ResultValue = "ResultValue";
|
||
|
|
static let StringValue = "StringValue";
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|