switch to hardware string from object

This commit is contained in:
Alex Bezdieniezhnykh
2025-05-02 10:14:40 +03:00
parent 2b6a8d1252
commit eb043e94a8
5 changed files with 16 additions and 27 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
using Azaion.Common.Entities;
using FluentValidation;
namespace Azaion.Common.Requests;
@@ -6,7 +5,7 @@ namespace Azaion.Common.Requests;
public class GetResourceRequest
{
public string Password { get; set; } = null!;
public HardwareInfo Hardware { get; set; } = null!;
public string Hardware { get; set; } = null!;
public string FileName { get; set; } = null!;
}