10 lines
234 B
C#
10 lines
234 B
C#
|
namespace ComputerHardwareStoreContracts.SearchModels
|
|||
|
{
|
|||
|
public class VendorSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
public string? Email { get; set; }
|
|||
|
public string? Password { get; set; }
|
|||
|
}
|
|||
|
}
|