Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

25 lines
564 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
namespace UnrealGameSyncCmd.Options
{
internal class InitCommandOptions : ConfigCommandOptions
{
[CommandLine("-Client=")]
public string? ClientName { get; set; }
[CommandLine("-Branch=")]
public string? BranchPath { get; set; }
[CommandLine("-Project=")]
public string? ProjectName { get; set; }
[CommandLine("-ClientRoot=")]
public string? ClientRoot { get; set; }
[CommandLine("-IgnoreExistingClients")]
public bool IgnoreExistingClients { get; set; }
}
}