12 lines
188 B
C#
12 lines
188 B
C#
namespace HardwareShopDataModels.Models
|
|
{
|
|
public interface ICommentModel : IId
|
|
{
|
|
string Text { get; }
|
|
|
|
int BuildId { get; }
|
|
|
|
int UserId { get; }
|
|
}
|
|
}
|