Computer_Hardware_Store/HardwareShop/HardwareShopContracts/BindingModels/CommentBindingModel.cs

17 lines
362 B
C#
Raw Normal View History

using HardwareShopDataModels.Models;
2023-04-01 12:58:12 +04:00
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;
2023-04-01 16:34:06 +04:00
public int BuildId { get; set; }
2023-04-01 21:25:50 +04:00
public int UserId { get; set; }
2023-04-01 12:58:12 +04:00
}
}