This commit is contained in:
Дмитрий Блохин 2024-04-03 13:30:29 +04:00
parent a4ede33acb
commit add7fada5f

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface IWorkerModel : IId
{
string Name { get; }
DateTime Birthday { get; }
String Specialization { get; }
Double Salary { get; }
}
}