添加项目文件。

This commit is contained in:
2025-02-28 22:23:13 +08:00
parent d4ad2fe2de
commit 547a1b3bf6
416 changed files with 72830 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
using Prism.Mvvm;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrpaonEMS.Model
{
/// <summary>
/// 文件信息
/// </summary>
public class DataLogFile:BindableBase
{
private ObservableCollection<DataLogFile> _SubFiles;
/// <summary>
/// 子文件信息
/// </summary>
public ObservableCollection<DataLogFile> SubFiles
{
get { return _SubFiles; }
set
{
_SubFiles = value;
RaisePropertyChanged();
}
}
private string _Ico;
/// <summary>
/// 图标
/// </summary>
public string Ico
{
get { return _Ico; }
set { _Ico = value; RaisePropertyChanged(); }
}
private string _Content;
/// <summary>
/// 内容
/// </summary>
public string Content
{
get { return _Content; }
set { _Content = value; RaisePropertyChanged(); }
}
}
}