mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
15 lines
200 B
C#
15 lines
200 B
C#
using System;
|
|
|
|
namespace Microsoft.Zune.Service
|
|
{
|
|
[Flags]
|
|
public enum EPurchaseOffersFlags
|
|
{
|
|
PurchaseHD = 0x1,
|
|
PurchaseTrials = 0x8,
|
|
StreamVideos = 0x4,
|
|
RentVideos = 0x2,
|
|
None = 0x0
|
|
}
|
|
}
|