Coursach/Course/DataModels/Models/IWorkerModel.cs

11 lines
221 B
C#
Raw Normal View History

2024-04-27 12:35:20 +04:00
namespace DataModels.Models
2024-04-03 13:30:29 +04:00
{
public interface IWorkerModel : IId
{
string Name { get; }
DateTime Birthday { get; }
2024-04-03 13:36:27 +04:00
string Specialization { get; }
double Salary { get; }
2024-04-03 13:30:29 +04:00
}
}