| | 1 | | <tr> |
| 0 | 2 | | <td>@Seat.RoleId</td> |
| 0 | 3 | | <td>@Seat.RoleName</td> |
| 0 | 4 | | <td>@Seat.CountryId</td> |
| 0 | 5 | | <td>@Seat.DelegationId</td> |
| 0 | 6 | | <td>@Seat.Subtypes</td> |
| 0 | 7 | | <td>@string.Join(", ", Seat.Participants.Select(n => n.DisplayName))</td> |
| | 8 | | </tr> |
| | 9 | |
|
| | 10 | | @code { |
| 0 | 11 | | [Parameter] public MUNity.Schema.Conference.CommitteeSeatInfo Seat { get; set; } |
| | 12 | |
|
| 0 | 13 | | [Parameter] public List<MUNity.Schema.Conference.CountryInfo> Countries { get; set; } |
| | 14 | |
|
| 0 | 15 | | [Parameter] public List<MUNity.Schema.Conference.DelegationInfo> Delegations { get; set; } |
| | 16 | | } |