Files
PulsarK-main/Pulsar.Common/Models/Process.cs
T

21 lines
362 B
C#
Raw Normal View History

2026-08-27 10:57:58 -06:00
using MessagePack;
namespace Pulsar.Common.Models
{
[MessagePackObject]
public class Process
{
[Key(1)]
public string Name { get; set; }
[Key(2)]
public int Id { get; set; }
[Key(3)]
public string MainWindowTitle { get; set; }
[Key(4)]
public int? ParentId { get; set; }
}
}