15 lines
427 B
C#
15 lines
427 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DamageAssesment.Api.Surveys.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 IEnumerable<SurveyTranslation> Titles { get; set; }
|
|
}
|
|
}
|