Computer_Hardware_Store/HardwareShop/HardwareShopDataModels/Models/ICommentModel.cs

12 lines
188 B
C#
Raw Normal View History

namespace HardwareShopDataModels.Models
{
public interface ICommentModel : IId
{
string Text { get; }
2023-04-01 16:34:06 +04:00
int BuildId { get; }
2023-04-01 21:25:50 +04:00
int UserId { get; }
}
}