21 lines
559 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;
namespace VetClinicDatabaseImplement.Models
{
public class Payment
{
public int Id { get; set; }
public int VisitsId { get; set; }
public decimal Sum { get; set; }
public decimal Remains { get; set; }
public DateTime DateOfPayment { get; set; }
public Visit Visit { get; set; }
}
}