namespace AIStudio.Settings.DataModel; public enum DataSourceSecurity { /// /// The security of the data source is not specified yet. /// NOT_SPECIFIED, /// /// This data can be used with any LLM provider. /// ALLOW_ANY, /// /// This data can only be used for self-hosted LLM providers. /// SELF_HOSTED, }