@@ -59,7 +59,6 @@ The `DateChanged` event fires when the user [navigates]({%slug scheduler-navigat
5959 {
6060 new SchedulerAppointment
6161 {
62- Id = Guid.NewGuid(),
6362 Title = "Board meeting",
6463 Description = "Q4 is coming to a close, review the details.",
6564 Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -68,7 +67,6 @@ The `DateChanged` event fires when the user [navigates]({%slug scheduler-navigat
6867
6968 new SchedulerAppointment
7069 {
71- Id = Guid.NewGuid(),
7270 Title = "Vet visit",
7371 Description = "The cat needs vaccinations and her teeth checked.",
7472 Start = new DateTime(2019, 11, 29, 11, 30, 0),
@@ -77,7 +75,6 @@ The `DateChanged` event fires when the user [navigates]({%slug scheduler-navigat
7775
7876 new SchedulerAppointment
7977 {
80- Id = Guid.NewGuid(),
8178 Title = "Planning meeting",
8279 Description = "Kick off the new project.",
8380 Start = new DateTime(2019, 12, 6, 9, 30, 0),
@@ -86,7 +83,6 @@ The `DateChanged` event fires when the user [navigates]({%slug scheduler-navigat
8683
8784 new SchedulerAppointment
8885 {
89- Id = Guid.NewGuid(),
9086 Title = "Trip to Hawaii",
9187 Description = "An unforgettable holiday!",
9288 IsAllDay = true,
@@ -97,7 +93,6 @@ The `DateChanged` event fires when the user [navigates]({%slug scheduler-navigat
9793
9894 public class SchedulerAppointment
9995 {
100- public Guid Id { get; set; }
10196 public string Title { get; set; }
10297 public string Description { get; set; }
10398 public DateTime Start { get; set; }
@@ -150,7 +145,6 @@ The `ViewChanged` event fires when the user chooses a new [View]({%slug schedule
150145 {
151146 new SchedulerAppointment
152147 {
153- Id = Guid.NewGuid(),
154148 Title = "Board meeting",
155149 Description = "Q4 is coming to a close, review the details.",
156150 Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -159,7 +153,6 @@ The `ViewChanged` event fires when the user chooses a new [View]({%slug schedule
159153
160154 new SchedulerAppointment
161155 {
162- Id = Guid.NewGuid(),
163156 Title = "Vet visit",
164157 Description = "The cat needs vaccinations and her teeth checked.",
165158 Start = new DateTime(2019, 11, 29, 11, 30, 0),
@@ -168,7 +161,6 @@ The `ViewChanged` event fires when the user chooses a new [View]({%slug schedule
168161
169162 new SchedulerAppointment
170163 {
171- Id = Guid.NewGuid(),
172164 Title = "Planning meeting",
173165 Description = "Kick off the new project.",
174166 Start = new DateTime(2019, 12, 6, 9, 30, 0),
@@ -177,7 +169,6 @@ The `ViewChanged` event fires when the user chooses a new [View]({%slug schedule
177169
178170 new SchedulerAppointment
179171 {
180- Id = Guid.NewGuid(),
181172 Title = "Trip to Hawaii",
182173 Description = "An unforgettable holiday!",
183174 IsAllDay = true,
@@ -188,7 +179,6 @@ The `ViewChanged` event fires when the user chooses a new [View]({%slug schedule
188179
189180 public class SchedulerAppointment
190181 {
191- public Guid Id { get; set; }
192182 public string Title { get; set; }
193183 public string Description { get; set; }
194184 public DateTime Start { get; set; }
0 commit comments