mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2025-03-26 20:19:06 +03:00
11 lines
269 B
C#
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) { } |