ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/BindingModels/PaymentBindingModel.cs

20 lines
438 B
C#
Raw Normal View History

2023-04-03 18:46:26 +04:00
using SchoolDataModels.Models;
using System;
2023-04-03 18:14:39 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BindingModel
{
2023-04-03 18:46:26 +04:00
public class PaymentBindingModel : IPaymentModel
2023-04-03 18:14:39 +04:00
{
public int Id { get; set; }
public decimal Sum { get; set; }
public decimal Remains { get; set; }
2023-04-03 18:46:26 +04:00
public DateTime? DateOfPayment { get; set; }
2023-04-03 18:14:39 +04:00
public int LessonId { get; set; }
}
}