Case_accounting/CaseAccounting/CaseAccountingContracts/SearchModels/UserSearchModel.cs

20 lines
365 B
C#
Raw Normal View History

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; }
public int? RoleId { get; set; }
}
}