ISEbd-21_Tukaeva_A_A_School/School/SchoolContracts/ViewModels/PaymentViewModel.cs

20 lines
435 B
C#

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