atlassian-downloader/src/Models/DownloaderOptions.cs

11 lines
269 B
C#

namespace EpicMorg.Atlassian.Downloader;
using System;
public record DownloaderOptions(
string OutputDir,
Uri[]? CustomFeed,
DownloadAction Action,
bool Version,
string? ProductVersion,
bool SkipFileCheck,
string UserAgent) { }