Computer_Hardware_Store/HardwareShop/HardwareShopContracts/SearchModels/CommentSearchModel.cs

12 lines
222 B
C#
Raw Normal View History

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 21:25:50 +04:00
public int? UserId { get; set; }
2023-04-01 12:50:44 +04:00
}
}