-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kyle Grinstead
committed
Sep 27, 2023
1 parent
40c4c8f
commit c8f1df2
Showing
10 changed files
with
165 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 0 additions & 43 deletions
43
src/Aquifer.API/Modules/Passages/PassageResourcesResponse.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/Aquifer.API/Modules/Resources/ResourceContentJsonSchema.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
namespace Aquifer.API.Modules.Resources; | ||
|
||
public class ResourceContentUrlJsonSchema | ||
{ | ||
public string Url { get; set; } = null!; | ||
} | ||
|
||
public class ResourceContentAudioJsonSchema | ||
{ | ||
public ResourceContentAudioTypeJsonSchema Webm { get; set; } = null!; | ||
public ResourceContentAudioTypeJsonSchema Mp3 { get; set; } = null!; | ||
} | ||
|
||
public class ResourceContentAudioTypeJsonSchema | ||
{ | ||
public string Url { get; set; } = null!; | ||
} |
Oops, something went wrong.