You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/widgets/CCSEntry.h

25 lines
504 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef WOWLET_CCSENTRY_H
#define WOWLET_CCSENTRY_H
#include <QString>
struct CCSEntry {
CCSEntry()= default;;
QString title = "";
QString date = "";
QString address = "";
QString author = "";
QString state = "";
QString url = "";
double target_amount = 0;
double raised_amount = 0;
double percentage_funded = 0;
int contributions = 0;
};
#endif //WOWLET_CCSENTRY_H