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

13 lines
265 B
C#

namespace SmallSoftwareContracts.BindingModels;
public class InstallationRequestBindingModel
{
public string? SoftwareId { get; set; }
public string? RequestId { get; set; }
public int Count { get; set; }
public double Price { get; set; }
}