mirror of
https://github.com/WinDurango/WinDurango.git
synced 2026-04-30 06:20:14 -05:00
19 lines
454 B
C++
19 lines
454 B
C++
#pragma once
|
|
#include "Windows.Xbox.ApplicationModel.Store.Configuration.g.h"
|
|
|
|
namespace winrt::Windows::Xbox::ApplicationModel::Store::implementation
|
|
{
|
|
struct Configuration
|
|
{
|
|
Configuration() = default;
|
|
|
|
static hstring MarketplaceId();
|
|
};
|
|
}
|
|
namespace winrt::Windows::Xbox::ApplicationModel::Store::factory_implementation
|
|
{
|
|
struct Configuration : ConfigurationT<Configuration, implementation::Configuration>
|
|
{
|
|
};
|
|
}
|