-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
namespace ReasnAPI.Helpers | ||
namespace ReasnAPI.Models.Controller | ||
{ | ||
public class CommentRequest | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using ReasnAPI.Models.DTOs; | ||
|
||
namespace ReasnAPI.Models.Controller | ||
{ | ||
public class ParticipantsResponse | ||
{ | ||
public List<ParticipantDto> Participating { get; set; } | ||
Check warning on line 7 in Server/ReasnAPI/ReasnAPI/Models/Controller/ParticipantsResponse.cs GitHub Actions / dotnet-tests (ubuntu-latest)
Check warning on line 7 in Server/ReasnAPI/ReasnAPI/Models/Controller/ParticipantsResponse.cs GitHub Actions / dotnet-tests (macos-latest)
Check warning on line 7 in Server/ReasnAPI/ReasnAPI/Models/Controller/ParticipantsResponse.cs GitHub Actions / dotnet-tests (windows-latest)
|
||
public List<ParticipantDto> Interested { get; set; } | ||
Check warning on line 8 in Server/ReasnAPI/ReasnAPI/Models/Controller/ParticipantsResponse.cs GitHub Actions / dotnet-tests (ubuntu-latest)
Check warning on line 8 in Server/ReasnAPI/ReasnAPI/Models/Controller/ParticipantsResponse.cs GitHub Actions / dotnet-tests (macos-latest)
Check warning on line 8 in Server/ReasnAPI/ReasnAPI/Models/Controller/ParticipantsResponse.cs GitHub Actions / dotnet-tests (windows-latest)
|
||
|
||
} | ||
} |