mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
12 lines
188 B
C++
12 lines
188 B
C++
#pragma once
|
|
|
|
#include <ctime>
|
|
#include <optional>
|
|
|
|
struct UpdateState
|
|
{
|
|
std::optional<std::time_t> github_update_last_checked_date;
|
|
|
|
static UpdateState load();
|
|
void save();
|
|
}; |