Основа для Contracts

This commit is contained in:
2025-05-24 23:19:13 +04:00
parent 828d53fa50
commit 459e75b64a
23 changed files with 600 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using ClinicScheduleModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ClinicScheduleContracts.SearchModels
{
public class UserSearchModel
{
public int? Id { get; set; }
public string? Login { get; set; }
public Roles? Role { get; set; }
public string? Fullname { get; set; }
public string? PhoneNumber { get; set; }
}
}