Coursach/Course/DataModels/Models/IWorkerModel.cs
2024-04-27 12:35:20 +04:00

11 lines
221 B
C#

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