添加项目文件。
This commit is contained in:
53
OrpaonEMS.Model/DataLogFile.cs
Normal file
53
OrpaonEMS.Model/DataLogFile.cs
Normal 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(); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user