Coursach/Course/DataModels/Models/IMachineModel.cs

9 lines
150 B
C#
Raw Normal View History

2024-04-27 12:35:20 +04:00
namespace DataModels.Models
2024-04-03 13:36:27 +04:00
{
public interface IMachineModel : IId
{
string Title { get; }
string Country { get; }
}
}