namespace NostrStreamer.Database; public class IngestEndpoint { public Guid Id { get; init; } = Guid.NewGuid(); public string Name { get; init; } = null!; /// /// Stream app name at ingest /// public string App { get; init; } = null!; /// /// Forward to VHost /// public string Forward { get; init; } = null!; /// /// Cost/min (milli-sats) /// public int Cost { get; init; } = 10_000; /// /// Stream capability tags /// public List Capabilities { get; init; } = new(); }