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

20 lines
435 B
C#
Raw Permalink Normal View History

2023-04-03 18:46:26 +04:00
using SchoolDataModels.Models;
using System;
2023-04-03 18:26:05 +04:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.ViewModels
{
2023-04-03 18:46:26 +04:00
public class PaymentViewModel : IPaymentModel
2023-04-03 18:26:05 +04:00
{
public int Id { get; set; }
public int PaySum { get; set; }
public int Remains { get; set; }
2023-04-03 18:26:05 +04:00
public DateTime? DateOfPayment { get; set; }
public int CircleLessonId { get; set; }
2023-04-03 18:26:05 +04:00
}
}