22 lines
559 B
C#
Raw Normal View History

2023-08-15 23:52:30 -04:00
using System.ComponentModel.DataAnnotations;
2023-10-04 18:45:51 -04:00
namespace DamageAssesment.Api.Responses.Models
2023-08-15 23:52:30 -04:00
{
public enum SurveyStatus
{
PENDING,
ACTIVE,
INACTIVE
}
2023-08-15 23:52:30 -04:00
public class Survey
{
public int Id { get; set; }
public bool IsEnabled { get; set; }
public DateTime? StartDate { get; set; }
public DateTime? EndDate { get; set; }
public DateTime CreatedDate { get; set; }
public string Status { get; set; }
public Dictionary<string, string> Titles { get; set; }
2023-08-15 23:52:30 -04:00
}
}