18 lines
430 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VetClinicBusinessLogic.ViewModels
{
public class PaymentViewModel
{
public int Id { get; set; }
public decimal Sum { get; set; }
public decimal Remains { get; set; }
public DateTime? DateOfPayment { get; set; }
public int VisitId { get; set; }
}
}