StartupArgs.cs 271 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace PixiEditor.Models.Controllers;
  3. /// <summary>
  4. /// A class that holds startup command line arguments + custom passed ones.
  5. /// </summary>
  6. public static class StartupArgs
  7. {
  8. public static List<string> Args { get; set; }
  9. }