You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
494 B
20 lines
494 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CoreAgent.ProtocolClient.Context
|
|
{
|
|
/// <summary>
|
|
/// 基础信息
|
|
/// </summary>
|
|
public class ProtocolBasicInfo
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Version { get; set; }
|
|
public string? License { get; set; }
|
|
public string? Model { get; set; }
|
|
public string[]? Headers { get; set; }
|
|
}
|
|
}
|
|
|