mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-13 05:42:48 +01:00
9 lines
145 B
C#
9 lines
145 B
C#
namespace TweetDuck.Updates{
|
|
public enum UpdateDownloadStatus{
|
|
None = 0,
|
|
InProgress,
|
|
Done,
|
|
Failed
|
|
}
|
|
}
|