Conflict resolved in Questions, Surveys

This commit is contained in:
Reginald Cherenfant Jasmin
2023-08-25 17:51:07 -04:00
parent fe1614fee3
commit 099055d088
5 changed files with 33 additions and 26 deletions

View File

@ -4,18 +4,10 @@ namespace DamageAssesment.Api.Employees.Models
{
public class Employee
{
[Key]
public string Id { get; set; }
[StringLength(50)]
public string Name { get; set; }
public DateTime BirthDate { get; set; }
[StringLength(50)]
public string OfficePhoneNumber { get; set; }
[StringLength(50)]
public string Email { get; set; }
public bool IsActive { get; set; }
public string? PreferredLanguage { get; set; } = "en";