mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2025-04-10 19:30:04 +03:00
22 lines
554 B
C#
22 lines
554 B
C#
namespace EpicMorg.Atlassian.Downloader
|
|
{
|
|
public enum DownloadAction
|
|
{
|
|
/// <summary>
|
|
/// Download application files
|
|
/// </summary>
|
|
Download,
|
|
/// <summary>
|
|
/// Print download URLs and exit
|
|
/// </summary>
|
|
ListURLs,
|
|
/// <summary>
|
|
/// Print available application versions and exit
|
|
/// </summary>
|
|
ListVersions,
|
|
/// <summary>
|
|
/// Print feed JSONs to stdout and exit
|
|
/// </summary>
|
|
ShowRawJson,
|
|
}
|
|
} |