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; } }