Skip to content
Snippets Groups Projects
Select Git revision
  • main
1 result

documentation.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    SQL2LinkedConfiguration.cs 484 B
    namespace SQL2Linked.Models.ConfigurationModels;
    
    /// <summary>
    /// Represents the configuration settings used in the application.
    /// </summary>
    public class SQL2LinkedConfiguration
    {
        /// <summary>
        /// The section name in the configuration file.
        /// </summary>
        public static readonly string Section = "SQL2LinkedConfiguration";
    
        /// <summary>
        /// Value indicating whether SQL2Linked is enabled.
        /// </summary>
        public bool IsEnabled { get; init; }
    }