80% Готово

This commit is contained in:
2025-03-27 06:55:34 +04:00
parent d3bf4eec43
commit e1e8d23bd0
25 changed files with 2080 additions and 229 deletions

View File

@@ -0,0 +1,11 @@
using SmallSoftwareContracts.DataModels;
namespace SmallSoftwareContracts.BindingModels;
public class RequestBindingModel
{
public string? Id { get; set; }
public string? WorkerId { get; set; }
public string? Email { get; set; }
public List<InstallationRequestBindingModel>? Softwares { get; set; }
}