10 lines
238 B
C#
10 lines
238 B
C#
namespace ComputerHardwareStoreContracts.SearchModels
|
|
{
|
|
public class ComponentSearchModel
|
|
{
|
|
public int? Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public int? StoreKeeperId { get; set; }
|
|
}
|
|
}
|