AutoCatUwp/AutoCat/MainPage.h
2020-08-16 10:34:10 -07:00

24 lines
503 B
C++

#pragma once
#include "MainPage.g.h"
namespace winrt::AutoCat::implementation
{
struct MainPage : MainPageT<MainPage>
{
MainPage();
int32_t MyProperty();
void MyProperty(int32_t value);
void Login_Click(winrt::Windows::Foundation::IInspectable const& sender, winrt::Windows::UI::Xaml::RoutedEventArgs const& e);
};
}
namespace winrt::AutoCat::factory_implementation
{
struct MainPage : MainPageT<MainPage, implementation::MainPage>
{
};
}