20 lines
435 B
C#
Raw Normal View History

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