10 lines
239 B
C#
Raw Normal View History

namespace ComputerHardwareStoreContracts.SearchModels
{
public class StoreKeeperSearchModel
{
public int? Id { get; set; }
public string? Email { get; set; }
public string? Password { get; set; }
}
}