Files

19 lines
331 B
C#
Raw Permalink Normal View History

2026-08-27 10:57:58 -06:00
using MessagePack;
using Pulsar.Common.Enums;
namespace Pulsar.Common.Models
{
[MessagePackObject]
public class StartupItem
{
[Key(1)]
public string Name { get; set; }
[Key(2)]
public string Path { get; set; }
[Key(3)]
public StartupType Type { get; set; }
}
}