(* Options: Date: 2026-02-26 07:16:15 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAppConfigsBySection.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace tvpl.api.ServiceModel open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open ServiceStack.Web open System.IO type AppConfigSection = | AppInfo = 0 | Smtp = 1 | Keycloak = 2 [] [] type GetAppConfigsBySection() = interface IReturn> member val Section:AppConfigSection = new AppConfigSection() with get,set