Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BindingModels/CommentBindingModel.cs

18 lines
416 B
C#

using FoodOrdersDataModels.Models;
using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace FoodOrdersContracts.BindingModels
{
public class CommentSearchModel : ICommentModel
{
public int Id { get; set; }
public string Text { get; set; } = string.Empty;
public string BuildName { get; set; } = string.Empty;
public int BuildID { get; set; }
}
}