using System;
using System.Collections.Generic;
namespace orthodox.Model;
public partial class PersonInformation
{
///
/// ID
///
public int Id { get; set; }
public string? Name { get; set; }
///
/// Telefona_numurs
///
public string? Phone { get; set; }
///
/// E-pasts
///
public string? Email { get; set; }
public virtual ICollection KlientaInformacijas { get; } = new List();
}