feat(api): реализован GetAll UnitFieldValue по Id FieldValue

This commit is contained in:
Mikhail Kuznetsov
2025-09-22 11:04:27 +10:00
parent e094db168f
commit 8b0f173abe
7 changed files with 84 additions and 21 deletions

View File

@@ -0,0 +1,11 @@
namespace PARR.API.Contracts.V1.Responses
{
public class UnitFieldValueBaseResponse
{
public Guid Id { get; set; }
public string? Value { get; set; }
}
public class UnitFieldValueResponse : UnitFieldValueBaseResponse { }
}