Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/CommentSearchModel.cs

13 lines
211 B
C#
Raw Normal View History


2023-04-01 12:50:44 +04:00
using System.ComponentModel;
namespace HardwareShopContracts.SearchModels
2023-04-01 12:50:44 +04:00
{
public class CommentSearchModel
{
public int? Id { get; set; }
public int? BuildId { get; set; }
2023-04-01 12:50:44 +04:00
}
}