Files

13 lines
216 B
C#
Raw Permalink Normal View History

2026-08-27 11:22:54 -06:00
using System.Windows.Media;
namespace Crysome.Server.View;
public class ProcessItemViewModel
{
public string Name { get; set; }
public int Pid { get; set; }
public ImageSource Icon { get; set; }
}