22 lines
496 B
C#
22 lines
496 B
C#
|
using System.ComponentModel.DataAnnotations;
|
|||
|
|
|||
|
namespace DamageAssesment.Api.SurveyResponses.Models
|
|||
|
{
|
|||
|
public class Employee
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|