Добавил дополнительное поле в абсракцию поиска

This commit is contained in:
Никита Потапов 2024-05-16 23:22:18 +04:00
parent cbd3383e0c
commit 2ec111faae

View File

@ -3,5 +3,6 @@
public abstract class AbstractSearchModel
{
public int? Id { get; set; }
public bool AnyMatch { get; set; } = false;
}
}