mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-12 23:09:06 +00:00
19 lines
401 B
C#
19 lines
401 B
C#
|
using AIStudio.Chat;
|
||
|
|
||
|
namespace AIStudio.Agents;
|
||
|
|
||
|
/// <summary>
|
||
|
/// The created user request.
|
||
|
/// </summary>
|
||
|
public sealed class UserRequest
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// The time when the request was created.
|
||
|
/// </summary>
|
||
|
public required DateTimeOffset Time { get; init; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// The user prompt.
|
||
|
/// </summary>
|
||
|
public required IContent UserPrompt { get; init; }
|
||
|
}
|