feat(api): Application GetAll, Work GetAll - добавлены фильтры по id

This commit is contained in:
Mikhail Trubnikov
2024-04-03 16:07:41 +10:00
parent 674d02280a
commit 7be64e3529
4 changed files with 17 additions and 0 deletions

View File

@@ -14,5 +14,11 @@ namespace PARR.API.Contracts.V1.Requests.Queries
/// Поиск по типу
/// </summary>
public Guid? TypeId { get; set; }
/// <summary>
/// Поиск по ИД
/// </summary>
public Guid? Id { get; set; }
}
}

View File

@@ -11,5 +11,10 @@
/// Поиск по имени. Например: "прочее"
/// </summary>
public string? Name { get; set; }
/// <summary>
/// Поиск по ИД
/// </summary>
public Guid? Id { get; set; }
}
}