2023-04-01 12:10:46 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HardwareShopDataModels.Models
|
|
|
|
|
{
|
2023-04-01 12:26:05 +04:00
|
|
|
|
public interface ICommentModel : IId
|
2023-04-01 12:10:46 +04:00
|
|
|
|
{
|
|
|
|
|
string Text { get; }
|
|
|
|
|
|
2023-04-01 16:34:06 +04:00
|
|
|
|
int BuildId { get; }
|
2023-04-01 12:10:46 +04:00
|
|
|
|
}
|
|
|
|
|
}
|