namespace AIStudio.Assistants.ERI;
public sealed class RetrievalParameter
{
///
/// The name of the parameter.
///
public string Name { get; set; } = string.Empty;
///
/// The description of the parameter.
///
public string Description { get; set; } = string.Empty;
}