namespace AnthropicClient.Models;
///
/// Represents a base class for sources.
///
public abstract class Source
{
///
/// Gets the type of the source.
///
public string Type { get; init; }
///
/// Initializes a new instance of the class.
///
/// The type of the source.
/// A new instance of the class.
protected Source(string type)
{
Type = type;
}
}