mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-01 02:34:04 +02:00
16 lines
457 B
C#
16 lines
457 B
C#
namespace TweetDuck.Updates{
|
|
public enum UpdateDownloadStatus{
|
|
None = 0,
|
|
InProgress,
|
|
AssetMissing,
|
|
Done,
|
|
Failed
|
|
}
|
|
|
|
public static class UpdateDownloadStatusExtensions{
|
|
public static bool IsFinished(this UpdateDownloadStatus status){
|
|
return status == UpdateDownloadStatus.AssetMissing || status == UpdateDownloadStatus.Done || status == UpdateDownloadStatus.Failed;
|
|
}
|
|
}
|
|
}
|