15 lines
423 B
C#
15 lines
423 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DamageAssesment.Api.Responses.Models
|
|
{
|
|
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 Dictionary<string, string> Titles { get; set; }
|
|
}
|
|
}
|