Files
TorchRemote/TorchRemote.Models/Requests/ChatCommandRequest.cs
2022-10-04 19:37:19 +07:00

3 lines
151 B
C#

namespace TorchRemote.Models.Requests;
public record ChatCommandRequest(string Command, bool Streamed = false, TimeSpan? StreamingDuration = null);