Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/UserSearchModel.cs

21 lines
401 B
C#
Raw Normal View History

2023-05-18 01:15:02 +04:00
using CaseAccountingDataModels.Enum;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaseAccountingContracts.SearchModels
{
public class UserSearchModel
{
public int? Id { get; set; }
2023-05-17 23:28:43 +04:00
public string? Login { get; set; }
public string? Password { get; set; }
2023-05-18 01:15:02 +04:00
public Role? Role { get; set; }
2023-05-17 23:28:43 +04:00
}
}