namespace AIStudio.Provider.OpenAI; /// /// Contract for sub-content in multimodal messages. /// public interface ISubContent { /// /// The type of the sub-content. /// public SubContentType Type { get; init; } }