Files
Pibd-21_Semin_D.A._SmallSof…/SmallSoftwareProject/SmallSoftwareContracts/ViewModels/InstallationRequestViewModel.cs
2025-03-27 06:55:34 +04:00

16 lines
391 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SmallSoftwareContracts.ViewModels;
public class InstallationRequestViewModel
{
public required string SoftwareId { get; set; }
public required string SoftwareName { get; set; }
public int Count { get; set; }
public double Price { get; set; }
}