mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-02 20:34:07 +02:00
9 lines
145 B
C#
9 lines
145 B
C#
namespace TweetDuck.Updates{
|
|
public enum UpdateDownloadStatus{
|
|
None = 0,
|
|
InProgress,
|
|
Done,
|
|
Failed
|
|
}
|
|
}
|