15 lines
388 B
C#
15 lines
388 B
C#
using System.Collections.Generic;
|
|
|
|
namespace taloyhtio.idp.parser.fivaldi
|
|
{
|
|
public class Record
|
|
{
|
|
public string Apartment { get; set; }
|
|
public string Building { get; set; }
|
|
public string Binding { get; set; }
|
|
public string Payer { get; set; }
|
|
public double Total { get; set; }
|
|
public List<Payment> Payments { get; set; }
|
|
}
|
|
}
|