namespace DataModels.Models
{
    public interface IMachineModel : IId
    {
        string Title { get; }
        string Country { get; }
    }
}