mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 05:58:08 +01:00
11 lines
229 B
C#
11 lines
229 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace TrainSearchWorker.Models;
|
|
|
|
public record JourneyResponse
|
|
{
|
|
[JsonPropertyName("journeys")]
|
|
public List<Journey>? Journeys { get; init; }
|
|
}
|