wowlet/src/widgets/CCSEntry.h
dsc 133700160a Feather, a free Monero desktop wallet
Co-Authored-By: tobtoht <thotbot@protonmail.com>
2020-10-08 04:31:22 +02:00

25 lines
502 B
C

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020, The Monero Project.
#ifndef FEATHER_CCSENTRY_H
#define FEATHER_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 //FEATHER_CCSENTRY_H