13 lines
287 B
C#
13 lines
287 B
C#
namespace Model.Models
|
||
{
|
||
/// <summary>
|
||
/// 子程序项纯数据类(对应 UIShare.UIViewModel.SubProgramItem)
|
||
/// </summary>
|
||
public class SubProgramItem
|
||
{
|
||
public string Name { get; set; } = "";
|
||
|
||
public string FilePath { get; set; } = "";
|
||
}
|
||
}
|