namespace DataModels.Models
{
    public interface IWorkerModel : IId
    {
        string Name { get; }
        DateTime Birthday { get; }
        string Specialization { get; }
        double Salary { get; }
    }
}