21 lines
362 B
C#
21 lines
362 B
C#
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; }
|
||
|
|
}
|
||
|
|
}
|