mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-26 08:53:55 +02:00
43 lines
852 B
C++
43 lines
852 B
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
namespace Data {
|
|
|
|
struct CreditTopupOption final {
|
|
uint64 credits = 0;
|
|
QString product;
|
|
QString currency;
|
|
uint64 amount = 0;
|
|
};
|
|
|
|
using CreditTopupOptions = std::vector<CreditTopupOption>;
|
|
|
|
struct CreditsHistoryEntry final {
|
|
enum class PeerType {
|
|
Peer,
|
|
AppStore,
|
|
PlayMarket,
|
|
Fragment,
|
|
};
|
|
QString id;
|
|
uint64 credits = 0;
|
|
QDateTime date;
|
|
PeerType peerType;
|
|
PeerId peerId = PeerId(0);
|
|
};
|
|
|
|
struct CreditsStatusSlice final {
|
|
using OffsetToken = QString;
|
|
std::vector<CreditsHistoryEntry> list;
|
|
uint64 balance = 0;
|
|
bool allLoaded = false;
|
|
OffsetToken token;
|
|
};
|
|
|
|
} // namespace Data
|