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

16 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace UniversityDataModels
{
public interface IPaymentModel : IId
{
double PaidPrice { get; }
DateTime DateCreate { get; }
int ClassByPurchaseId { get; }
}
}