mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-14 17:42:47 +01:00
17 lines
475 B
C#
17 lines
475 B
C#
namespace TweetDuck.Updates{
|
|
public enum UpdateDownloadStatus{
|
|
None = 0,
|
|
InProgress,
|
|
Canceled,
|
|
AssetMissing,
|
|
Failed,
|
|
Done
|
|
}
|
|
|
|
public static class UpdateDownloadStatusExtensions{
|
|
public static bool IsFinished(this UpdateDownloadStatus status){
|
|
return status == UpdateDownloadStatus.AssetMissing || status == UpdateDownloadStatus.Done || status == UpdateDownloadStatus.Failed;
|
|
}
|
|
}
|
|
}
|