20 lines
455 B
C#

using SchoolDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BindingModel
{
public class PaymentBindingModel : IPaymentModel
{
public int Id { get; set; }
public int PaySum { get; set; }
public DateTime? DateOfPayment { get; set; } = DateTime.Now;
public int CircleLessonId { get; set; }
public int Remains { get; set; }
}
}