20 lines
561 B
C#
20 lines
561 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.ViewModels
|
|
{
|
|
public class PaymentViewModel
|
|
{
|
|
public Guid UserId { get; set; }
|
|
public string UserFirstName { get; set; } = string.Empty;
|
|
public string UserSecondName { get; set; } = string.Empty;
|
|
public string Email { get; set; } = string.Empty;
|
|
public int ProductCount { get; set; }
|
|
public double Cost { get; set; }
|
|
public int? Bonus { get; set; }
|
|
}
|
|
}
|