20 lines
460 B
C#
20 lines
460 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FurnitureContracts.SearchModels
|
|
{
|
|
public class HeadsetSearchModel
|
|
{
|
|
public string? Title { get; set; }
|
|
public int? Id { get; set; }
|
|
public int? ManagerId { get; set; }
|
|
public string? Size { get; set; }
|
|
public DateTime? DateFrom { get; set; }
|
|
|
|
public DateTime? DateTo { get; set; }
|
|
}
|
|
}
|