mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
18 lines
360 B
C#
18 lines
360 B
C#
using Microsoft.Win32;
|
|
|
|
namespace Microsoft.Zune.Configuration
|
|
{
|
|
public class ChannelsConfiguration : CConfigurationManagedBase
|
|
{
|
|
internal ChannelsConfiguration(RegistryHive hive)
|
|
: base(hive, null, "Channels")
|
|
{
|
|
}
|
|
|
|
public ChannelsConfiguration(RegistryHive hive, string basePath, string instance)
|
|
: base(hive, basePath, instance)
|
|
{
|
|
}
|
|
}
|
|
}
|