added automatic deletion of polls

This commit is contained in:
Sarah Faey 2023-02-13 23:12:05 +01:00
parent b6dd3ff9c4
commit ac3cc69b68
7 changed files with 846 additions and 7 deletions

View file

@ -19,6 +19,7 @@ namespace Lieb.Models.Poll
public AnswerType AnswerType {get; set;}
public bool AllowCustomAnswer {get; set;} = false;
public int? RaidId { get; set; }
public DateTimeOffset CreatedAt {get; set;} = DateTimeOffset.UtcNow;
public bool IsAutoPoll {get; set;} = false;
}
}