10 lines
230 B
C#
10 lines
230 B
C#
namespace ComputerHardwareStoreContracts.SearchModels
|
|
{
|
|
public class StoreKeeperSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? Login { get; set; }
|
|
public string? Password { get; set; }
|
|
}
|
|
}
|