25 lines
715 B
C#
25 lines
715 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.ComponentModel.DataAnnotations;
|
|||
|
using System.ComponentModel.DataAnnotations.Schema;
|
|||
|
using VetClinicBusinessLogic.Enums;
|
|||
|
using VetClinicDatabaseImplement.Models;
|
|||
|
|
|||
|
namespace VetClinicDatabaseImplement.Models
|
|||
|
{
|
|||
|
public class Client
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string Phone { get; set; }
|
|||
|
public string Password { get; set; }
|
|||
|
public string Mail { get; set; }
|
|||
|
public string Pet { get; set; }
|
|||
|
public string PetName { get; set; }
|
|||
|
public List<Visit> Visits { get; set; }
|
|||
|
}
|
|||
|
}
|