Files
deepdrft/DeepDrftContent/Models/CorsSettings.cs
T
daniel-c-harvey 7f78545a02 *Audio Playback*
Content API:
 - Enabling CORS for access from Blazor app
Web Server:
 - Content API URL environment config
 - Web Audio API JS Interop layer in TypeScript
 - HttpClient configs
Web Client:
 - Audio Tack player controls
 - Audio Player example page
 - Audio Interop Service Layer
 - Named HttpClients
2025-09-05 10:48:07 -04:00

6 lines
119 B
C#

namespace DeepDrftContent.Models;
public class CorsSettings
{
public string[] AllowedOrigins { get; set; } = [];
}