mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
721ee8e494
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
10 lines
249 B
C#
10 lines
249 B
C#
using System.Diagnostics;
|
|
|
|
namespace Daybreak.Shared.Models;
|
|
public readonly struct ApplicationLauncherContext
|
|
{
|
|
public string ExecutablePath { get; init; }
|
|
public Process Process { get; init; }
|
|
public uint ProcessId { get; init; }
|
|
}
|