using PayPalCheckoutSdk.Orders;
using System;
using System.ComponentModel.DataAnnotations;
namespace gehGassi.Web.Models
{
public class StatisticVm
{
}
///
/// Viewmmodel für die Auswahl des Zeitraums einer Statistik
///
public class StatisticDateRangeVm
{
///
/// Start-Datum
///
[Display(Name = "Common_Date")]
public DateTimeOffset? Start { get; set; }
///
/// Enddatum
///
[Display(Name = "Common_Date")]
public DateTimeOffset? End { get; set; }
///
/// Gewähltes Land
///
[Display(Name = "Common_Country")]
public string CountryIso { get; set; }
}
///
/// Viewmodel für die Anzeige der Statistik für Walks
///
public class StatisticWalkVm
{
///
/// Gesamt
///
public int Total { get; set; }
public int ToPay { get; set; }
public int Running { get; set; }
public int Completed { get; set; }
public int NotCompleted { get; set; }
public int Confirmed { get; set; }
public int Complained { get; set; }
public int ComplainResolved { get; set; }
}
}