using System;
using System.Collections.Generic;
namespace orthodox.Model;
public class Datum
{
///
/// ID
///
public int Id { get; set; }
///
/// Sanemsanas_laiks
///
public DateTime? PaymentDate { get; set; }
public string? PaymentType { get; set; }
public virtual ICollection KlientaInformacijas { get; } = new List();
}