17 lines
461 B
C#
17 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SmallSoftwareContracts.BindingModels;
|
|
public class WorkerBindingModel
|
|
{
|
|
public string? Id { get; set; }
|
|
public string? FIO { get; set; }
|
|
public string? PostId { get; set; }
|
|
public DateTime BirthDate { get; set; }
|
|
public DateTime EmploymentDate { get; set; }
|
|
public string? ConfigurationJson { get; set; }
|
|
}
|