Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BindingModels/CommentBindingModel.cs

16 lines
358 B
C#
Raw Normal View History

using HardwareShopDataModels.Models;
2023-04-01 12:58:12 +04:00
using HardwareShopDataModels.Models;
using System.ComponentModel;
namespace HardwareShopContracts.BindingModels
2023-04-01 12:58:12 +04:00
{
public class CommentBindingModel : ICommentModel
2023-04-01 12:58:12 +04:00
{
public int Id { get; set; }
public string Text { get; set; } = string.Empty;
public int BuildID { get; set; }
}
}