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

19 lines
387 B
C#
Raw Normal View History

2023-04-03 18:26:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.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 LessonId { get; set; }
}
}