added poll pages

This commit is contained in:
Sarah Faey 2023-01-14 21:04:01 +01:00
parent 6d6e720695
commit 1158aff6df
8 changed files with 340 additions and 14 deletions

View file

@ -3,6 +3,6 @@
public class PollOption
{
public int PollOptionId { get; set; }
public string Name { get; set;}
public string Name { get; set;} = string.Empty;
}
}