Files
ZuneShell.dll/ZuneImpl/Service/Service.cs
T

16 lines
292 B
C#
Raw Normal View History

2022-06-23 23:08:56 -05:00
namespace Microsoft.Zune.Service
2021-03-31 13:54:53 -05:00
{
2022-06-23 23:08:56 -05:00
public class Service2
2021-03-31 13:54:53 -05:00
{
2022-06-23 23:08:56 -05:00
private static readonly IService _instance = new CommunityService();
public static IService Instance => _instance;
}
2021-03-31 13:54:53 -05:00
2022-06-23 23:08:56 -05:00
public enum EMediaFormat
{
}
2021-03-31 13:54:53 -05:00
2022-06-23 23:08:56 -05:00
public enum EMediaRights
{
2021-03-31 13:54:53 -05:00
}
}