30 lines
608 B
C#
30 lines
608 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
// ========= QRCodeItem.cs file =========
|
|
namespace model
|
|
{
|
|
public class Pipeline_ComponentQRCodeQRCodeItem
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public string element { get; set; }
|
|
}
|
|
}
|
|
|
|
// ========= RootName.cs file =========
|
|
namespace model
|
|
{
|
|
public class Pipeline_ComponentQRCodeRootName
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<Pipeline_ComponentQRCodeQRCodeItem> QRCode { get; set; }
|
|
}
|
|
}
|