21 lines
433 B
C#
21 lines
433 B
C#
using ElectronicsShopDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ElectronicsShopContracts.ViewModels
|
|
{
|
|
public class PayViewModel : IPayModel
|
|
{
|
|
public int ID { get; set; }
|
|
public int ClientID {get;set;}
|
|
|
|
public double SummaPay { get; set; }
|
|
|
|
public DateTime DatePay { get; set; }
|
|
|
|
}
|
|
}
|