2024-05-29 00:53:31 +04:00

21 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityContracts.BindingModels
{
public class PaymentBindingModel
{
public DateTime DateCreate { get; set; } = DateTime.Now;
public double PaidPrice { get; set; }
public int Id { get; set; }
public int ClassByPurchaseId { get; set; }
}
}