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.

59 lines
1.5 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.CoreCommunications.Heartbeat
* 632CFB9B-9190-4225-B13E-5AF0E96FCEA3
*
* WenJY
*
* 2025-10-16 11:29:00
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Iot.Model.api.CoreCommunications.Heartbeat
{
/// <summary>
/// 配方标识符
/// 基础的配方标识信息
/// </summary>
public class RecipeIdentifier
{
/// <summary>
/// 配方名称
/// </summary>
public string RecipeName { get; set; }
/// <summary>
/// 配方版本
/// </summary>
public string Revision { get; set; }
/*/// <summary>
/// 配方唯一标识符
/// </summary>
public string UniqueId { get; set; }
/// <summary>
/// 配方类型
/// </summary>
public RecipeType Type { get; set; }
/// <summary>
/// 配方分类
/// </summary>
public string Category { get; set; }*/
}
}