19 lines
466 B
C#
19 lines
466 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmallSoftwareDatabase.Models;
|
|
|
|
internal class InstallationRequest
|
|
{
|
|
public required string SoftwareId { get; set; }
|
|
public required string RequestId { get; set; }
|
|
public int Count { get; set; }
|
|
public double Price { get; set; }
|
|
public Request? Request { get; set; }
|
|
public Software? Software { get; set; }
|
|
|
|
}
|