CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/CostItemSearchModel.cs
Илья Федотов e78b0ffdbe Product create
2024-05-28 12:50:24 +04:00

15 lines
354 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.SearchModels {
public class CostItemSearchModel {
public int? ID { get; set; }
public string? Name { get; set; }
public int? CostNum { get; set; }
public int? EmployeeID { get; set; }
}
}