Илья Федотов 0cbba88298 ужас
2024-06-01 05:00:05 +04:00

18 lines
393 B
C#

using ElectronicsShopDataModels.Enums;
using Microsoft.VisualBasic;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels.Models
{
public interface IPaymentModel: IID
{
int OrderID { get; }
double SumPayment { get; }
PaymeantOption PayOption { get; }
}
}