namespace EgwCoreLib.BlazorTest.Components { public class Appointment { public DateTime Start { get; set; } public DateTime End { get; set; } public string Text { get; set; } = ""; public string Detail { get; set; } = ""; } }