mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2026-08-15 02:57:49 +04:00
21 lines
462 B
C#
21 lines
462 B
C#
using ResTreeLib;
|
|
|
|
namespace NResUI.Models;
|
|
|
|
public class ResearchTreeViewModel
|
|
{
|
|
public bool HasFile { get; set; }
|
|
public string? Error { get; set; }
|
|
|
|
public List<ResearchNodeData>? ResearchNodeDatas { get; set; }
|
|
|
|
public string? Path { get; set; }
|
|
|
|
public void SetParseResult(List<ResearchNodeData> researchNodeDatas, string path)
|
|
{
|
|
ResearchNodeDatas = researchNodeDatas;
|
|
HasFile = true;
|
|
Path = path;
|
|
}
|
|
}
|