blob: 5527b9f1135754dd4a1b4eacd4a9723c1ec00b48 [file] [log] [blame]
#pragma once
#include <pch.h>
using namespace Platform;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
namespace RingClientUWP
{
public ref class UserModel sealed
{
internal:
/* singleton */
static property UserModel^ instance
{
UserModel^ get()
{
static UserModel^ instance_ = ref new UserModel();
return instance_;
}
}
property String^ firstName;
property String^ lastName;
void getUserData();
private:
UserModel() { };
};
}