CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopContracts/SearchModels/CostItemSearchModel.cs

15 lines
354 B
C#
Raw Normal View History

2024-05-19 19:18:06 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopContracts.SearchModels {
2024-05-22 23:00:35 +04:00
public class CostItemSearchModel {
public int? ID { get; set; }
public string? Name { get; set; }
2024-05-27 22:05:47 +04:00
public int? CostNum { get; set; }
2024-05-28 12:50:24 +04:00
public int? EmployeeID { get; set; }
2024-05-19 19:18:06 +04:00
}
}