DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.SurveyResponses/Models/SurveyResponse.cs

19 lines
621 B
C#
Raw Normal View History

2023-08-15 22:52:30 -05:00
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace DamageAssesment.Api.SurveyResponses.Models
{
public class SurveyResponse
{
public int Id { get; set; }
public int SurveyId { get; set; }
public string LocationId { get; set; }
public string EmployeeId { get; set; }
public DateTime? CreatedDate { get; set; }
public string? ClientDevice { get; set; }
public string? KeyAnswerResult { get; set; }
public double? Longitute { get; set; }
public double? Latitude { get; set; }
2023-08-15 22:52:30 -05:00
}
}