27 lines
543 B
C#
27 lines
543 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace DiakonieMuelheim
|
|
{
|
|
public class SynodenstatistikRO
|
|
{
|
|
public List<SynodenstatistikCustomerRO> DetailList { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public DateTime EndDate { get; set; }
|
|
|
|
}
|
|
|
|
public class SynodenstatistikCustomerRO
|
|
{
|
|
public String Gemeinde { get; set; }
|
|
|
|
public String Team { get; set; }
|
|
|
|
public int Mitbetreute { get; set; }
|
|
|
|
|
|
}
|
|
} |