public static void Main()
var test1 = new FeaturedEventsViewModel(){ Slot = 1, Category = "Nothing" };
var test2 = new FeaturedEventsViewModel(){ Slot = 1, Url = "Nothing" };
Console.WriteLine(test1.Category);
Console.WriteLine(test2.Category);
public class FeaturedEventsViewModel
public int Slot { get; set; }
public string Category { get; set; }
public string Url { get; set; }
public string ShowLocation { get; set; }
public string Location { get; set; }
public string Title { get; set; }
public string Image { get; set; }
public string DisplayDate { get; set; }
public string NoteText { get; set; }
public string ColorNoteText { get; set; }
public string CategoryTextColor { get; set; }
public string DateTextColor { get; set; }