mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
10 lines
199 B
C#
10 lines
199 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace TrainSearchWorker.Models;
|
|
|
|
public record BookTrainsRequest
|
|
{
|
|
[JsonPropertyName("train_ids")]
|
|
public required string TrainIds { get; init; }
|
|
}
|