Files
wpf-visual-process-framework/VisionFrame/Models/CatalogModel.cs

19 lines
434 B
C#
Raw Normal View History

2025-07-14 21:08:46 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VisionFrame.Models
{
internal class CatalogModel
{
public bool IsSelected { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Icon { get; set; }
public List<ComponentModel> Components { get; set; }
}
}