I think we have finished the main bulk of the auto updater #29

This commit is contained in:
tidusjar 2016-05-20 13:07:24 +01:00
commit 0601f04582
4 changed files with 47 additions and 13 deletions

View file

@ -26,10 +26,10 @@
#endregion
namespace PlexRequests.UI.Start
{
public enum UpdateValue
public enum UpdateValue : int
{
None,
Updated,
Failed
None = 0,
Updated = 1,
Failed = 2
}
}