Files
ZuneShell.dll/ZuneDBApi/Microsoft/Zune/Subscription/SubscriptionAction.cs
T

11 lines
162 B
C#
Raw Normal View History

2021-11-11 11:18:46 -06:00
namespace Microsoft.Zune.Subscription
{
public enum SubscriptionAction
{
Unsubscribed = 3,
RefreshFinished = 2,
RefreshStarted = 1,
Subscribed = 0
}
}