using BlogDataModels.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BlogContracts.BindingModel { public class CommentBindingModel : IComment { public string Text { get; set; } = string.Empty; public int NewId { get; set; } public int Id { get; set; } } }