This repository was archived by the owner on Jul 10, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -233,24 +233,24 @@ We're also going to take this opportunity to rename the `Models` directory in th
233
233
```
234
234
1 . Add an ` SessionAttendee.cs ` class with the following code:
235
235
``` csharp
236
- using System ;
237
- using System .Collections .Generic ;
238
- using System .Linq ;
239
- using System .Threading .Tasks ;
236
+ using System ;
237
+ using System .Collections .Generic ;
238
+ using System .Linq ;
239
+ using System .Threading .Tasks ;
240
240
241
- namespace BackEnd .Data
242
- {
243
- public class SessionAttendee
244
- {
245
- public int SessionID { get ; set ; }
241
+ namespace BackEnd .Data
242
+ {
243
+ public class SessionAttendee
244
+ {
245
+ public int SessionID { get ; set ; }
246
246
247
- public Session Session { get ; set ; }
247
+ public Session Session { get ; set ; }
248
248
249
- public int AttendeeID { get ; set ; }
249
+ public int AttendeeID { get ; set ; }
250
250
251
- public Attendee Attendee { get ; set ; }
252
- }
253
- }
251
+ public Attendee Attendee { get ; set ; }
252
+ }
253
+ }
254
254
```
255
255
1 . Add an ` Attendee.cs ` class with the following code:
256
256
``` csharp
You can’t perform that action at this time.
0 commit comments