Skip to content
Snippets Groups Projects
Select Git revision
  • aa4c734cb0d0b783566ade6a8873ea4051335a63
  • master default protected
  • feature/build
  • develop
  • VA_v2022a
  • v2021.a
  • v2020.a
  • v2019.a
  • v2018.b
  • v2017.c
  • v2017.a
  • v2016.a
12 results

VAUSoundSource.cs

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; }
    }