19 lines
348 B
C#
19 lines
348 B
C#
using ProtoBuf;
|
|||
|
|
using Quasar.Common.Enums;
|
||
|
|
|
||
|
|
namespace Quasar.Common.Models
|
||
|
|
{
|
||
|
|
[ProtoContract]
|
||
|
|
public class StartupItem
|
||
|
|
{
|
||
|
|
[ProtoMember(1)]
|
||
|
|
public string Name { get; set; }
|
||
|
|
|
||
|
|
[ProtoMember(2)]
|
||
|
|
public string Path { get; set; }
|
||
|
|
|
||
|
|
[ProtoMember(3)]
|
||
|
|
public StartupType Type { get; set; }
|
||
|
|
}
|
||
|
|
}
|