Files
NXST/include/nxst/ui/ui_context.hpp
T
DragonSpirit ba53a464fe
CI / Build NRO (push) Failing after 39s
CI / Format check (push) Successful in 13s
CI / Layering check (push) Successful in 1s
finish refactor, add docs and CI
2026-04-27 03:19:42 +03:00

15 lines
243 B
C++

#pragma once
#include <optional>
#include <string>
#include <switch.h>
#include <nxst/domain/account.hpp>
namespace ui {
struct UiContext {
std::optional<AccountUid> selectedUser;
std::string selectedUserName;
};
} // namespace ui