20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace VOL.Model.Ai
|
|
{
|
|
/// <summary>
|
|
/// Ai参数基类
|
|
/// </summary>
|
|
public class AiRequestDto
|
|
{
|
|
/// <summary>
|
|
/// AI设备的唯一编码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
}
|
|
}
|