Skip to content

Commit 005166a

Browse files
chore(scheduler): remove unnecessary IDs
1 parent 5a3f3d2 commit 005166a

File tree

7 files changed

+0
-39
lines changed

7 files changed

+0
-39
lines changed

components/scheduler/events.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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; }

components/scheduler/navigation.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ Change current View:
6868
{
6969
new SchedulerAppointment
7070
{
71-
Id = Guid.NewGuid(),
7271
Title = "Board meeting",
7372
Description = "Q4 is coming to a close, review the details.",
7473
Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -77,7 +76,6 @@ Change current View:
7776
7877
new SchedulerAppointment
7978
{
80-
Id = Guid.NewGuid(),
8179
Title = "Vet visit",
8280
Description = "The cat needs vaccinations and her teeth checked.",
8381
Start = new DateTime(2019, 12, 2, 11, 30, 0),
@@ -95,7 +93,6 @@ Change current View:
9593
9694
new SchedulerAppointment
9795
{
98-
Id = Guid.NewGuid(),
9996
Title = "Trip to Hawaii",
10097
Description = "An unforgettable holiday!",
10198
IsAllDay = true,
@@ -106,7 +103,6 @@ Change current View:
106103
107104
public class SchedulerAppointment
108105
{
109-
public Guid Id { get; set; }
110106
public string Title { get; set; }
111107
public string Description { get; set; }
112108
public DateTime Start { get; set; }

components/scheduler/overview.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ To use a Telerik Scheduler for Blazor
3939
{
4040
new SchedulerAppointment
4141
{
42-
Id = Guid.NewGuid(),
4342
Title = "Vet visit",
4443
Description = "The cat needs vaccinations and her teeth checked.",
4544
Start = new DateTime(2019, 11, 26, 11, 30, 0),
@@ -48,7 +47,6 @@ To use a Telerik Scheduler for Blazor
4847
4948
new SchedulerAppointment
5049
{
51-
Id = Guid.NewGuid(),
5250
Title = "Planning meeting",
5351
Description = "Kick off the new project.",
5452
Start = new DateTime(2019, 11, 25, 9, 30, 0),
@@ -57,7 +55,6 @@ To use a Telerik Scheduler for Blazor
5755
5856
new SchedulerAppointment
5957
{
60-
Id = Guid.NewGuid(),
6158
Title = "Trip to Hawaii",
6259
Description = "An unforgettable holiday!",
6360
IsAllDay = true,
@@ -68,7 +65,6 @@ To use a Telerik Scheduler for Blazor
6865
6966
public class SchedulerAppointment
7067
{
71-
public Guid Id { get; set; }
7268
public string Title { get; set; }
7369
public string Description { get; set; }
7470
public DateTime Start { get; set; }
@@ -102,7 +98,6 @@ The Scheduler is a generic component and its type is determined by the type of t
10298
10399
public class SchedulerAppointment
104100
{
105-
public Guid Id { get; set; }
106101
public string Title { get; set; }
107102
public string Description { get; set; }
108103
public DateTime Start { get; set; }

components/scheduler/views/day.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ In this article:
5050
{
5151
new SchedulerAppointment
5252
{
53-
Id = Guid.NewGuid(),
5453
Title = "Board meeting",
5554
Description = "Q4 is coming to a close, review the details.",
5655
Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -59,7 +58,6 @@ In this article:
5958
6059
new SchedulerAppointment
6160
{
62-
Id = Guid.NewGuid(),
6361
Title = "Vet visit",
6462
Description = "The cat needs vaccinations and her teeth checked.",
6563
Start = new DateTime(2019, 12, 2, 11, 30, 0),
@@ -68,7 +66,6 @@ In this article:
6866
6967
new SchedulerAppointment
7068
{
71-
Id = Guid.NewGuid(),
7269
Title = "Planning meeting",
7370
Description = "Kick off the new project.",
7471
Start = new DateTime(2019, 12, 6, 9, 30, 0),
@@ -77,7 +74,6 @@ In this article:
7774
7875
new SchedulerAppointment
7976
{
80-
Id = Guid.NewGuid(),
8177
Title = "Trip to Hawaii",
8278
Description = "An unforgettable holiday!",
8379
IsAllDay = true,
@@ -88,7 +84,6 @@ In this article:
8884
8985
public class SchedulerAppointment
9086
{
91-
public Guid Id { get; set; }
9287
public string Title { get; set; }
9388
public string Description { get; set; }
9489
public DateTime Start { get; set; }

components/scheduler/views/multiday.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ In this article:
5151
{
5252
new SchedulerAppointment
5353
{
54-
Id = Guid.NewGuid(),
5554
Title = "Board meeting",
5655
Description = "Q4 is coming to a close, review the details.",
5756
Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -60,7 +59,6 @@ In this article:
6059
6160
new SchedulerAppointment
6261
{
63-
Id = Guid.NewGuid(),
6462
Title = "Vet visit",
6563
Description = "The cat needs vaccinations and her teeth checked.",
6664
Start = new DateTime(2019, 12, 2, 11, 30, 0),
@@ -69,7 +67,6 @@ In this article:
6967
7068
new SchedulerAppointment
7169
{
72-
Id = Guid.NewGuid(),
7370
Title = "Planning meeting",
7471
Description = "Kick off the new project.",
7572
Start = new DateTime(2019, 12, 6, 9, 30, 0),
@@ -78,7 +75,6 @@ In this article:
7875
7976
new SchedulerAppointment
8077
{
81-
Id = Guid.NewGuid(),
8278
Title = "Trip to Hawaii",
8379
Description = "An unforgettable holiday!",
8480
IsAllDay = true,
@@ -89,7 +85,6 @@ In this article:
8985
9086
public class SchedulerAppointment
9187
{
92-
public Guid Id { get; set; }
9388
public string Title { get; set; }
9489
public string Description { get; set; }
9590
public DateTime Start { get; set; }

components/scheduler/views/overview.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ The available views are:
4747
{
4848
new SchedulerAppointment
4949
{
50-
Id = Guid.NewGuid(),
5150
Title = "Board meeting",
5251
Description = "Q4 is coming to a close, review the details.",
5352
Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -56,7 +55,6 @@ The available views are:
5655
5756
new SchedulerAppointment
5857
{
59-
Id = Guid.NewGuid(),
6058
Title = "Vet visit",
6159
Description = "The cat needs vaccinations and her teeth checked.",
6260
Start = new DateTime(2019, 12, 2, 11, 30, 0),
@@ -65,7 +63,6 @@ The available views are:
6563
6664
new SchedulerAppointment
6765
{
68-
Id = Guid.NewGuid(),
6966
Title = "Planning meeting",
7067
Description = "Kick off the new project.",
7168
Start = new DateTime(2019, 12, 6, 9, 30, 0),
@@ -74,7 +71,6 @@ The available views are:
7471
7572
new SchedulerAppointment
7673
{
77-
Id = Guid.NewGuid(),
7874
Title = "Trip to Hawaii",
7975
Description = "An unforgettable holiday!",
8076
IsAllDay = true,
@@ -85,7 +81,6 @@ The available views are:
8581
8682
public class SchedulerAppointment
8783
{
88-
public Guid Id { get; set; }
8984
public string Title { get; set; }
9085
public string Description { get; set; }
9186
public DateTime Start { get; set; }

components/scheduler/views/week.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ In this article:
5050
{
5151
new SchedulerAppointment
5252
{
53-
Id = Guid.NewGuid(),
5453
Title = "Board meeting",
5554
Description = "Q4 is coming to a close, review the details.",
5655
Start = new DateTime(2019, 12, 5, 10, 00, 0),
@@ -59,7 +58,6 @@ In this article:
5958
6059
new SchedulerAppointment
6160
{
62-
Id = Guid.NewGuid(),
6361
Title = "Vet visit",
6462
Description = "The cat needs vaccinations and her teeth checked.",
6563
Start = new DateTime(2019, 12, 2, 11, 30, 0),
@@ -68,7 +66,6 @@ In this article:
6866
6967
new SchedulerAppointment
7068
{
71-
Id = Guid.NewGuid(),
7269
Title = "Planning meeting",
7370
Description = "Kick off the new project.",
7471
Start = new DateTime(2019, 12, 6, 9, 30, 0),
@@ -77,7 +74,6 @@ In this article:
7774
7875
new SchedulerAppointment
7976
{
80-
Id = Guid.NewGuid(),
8177
Title = "Trip to Hawaii",
8278
Description = "An unforgettable holiday!",
8379
IsAllDay = true,
@@ -88,7 +84,6 @@ In this article:
8884
8985
public class SchedulerAppointment
9086
{
91-
public Guid Id { get; set; }
9287
public string Title { get; set; }
9388
public string Description { get; set; }
9489
public DateTime Start { get; set; }

0 commit comments

Comments
 (0)