添加项目文件。

This commit is contained in:
2025-09-15 17:59:48 +08:00
parent 872f090cc2
commit e7adae128e
91 changed files with 14260 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
using System;
namespace MoviconHub.App.Models
{
/// <summary>
/// 信号模型
/// </summary>
public class SglModel
{
public event EventHandler<string> SglModelChanged;
private string _CodeReady;
/// <summary>
/// 条码信息OK
/// </summary>
public string CodeReady
{
get
{
return _CodeReady;
}
set
{
if (value != _CodeReady)
{
if (!string.IsNullOrEmpty(value))
{
SglModelChanged(this, "CodeReady");//开始动作
}
_CodeReady = value;
}
}
}
}
}