(* Options: Date: 2025-09-03 19:53:09 Version: 6.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://foundrystage-api-app.azurewebsites.net //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: EnableTwoFactorAuthenticationRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Infrastructure.Api.Interfaces.ServiceOperations open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations open System.IO [] type PutOperationUnTenanted<'TResponse>() = interface IPut [] type EnableTwoFactorAuthenticationResponse() = member val ResponseStatus:ResponseStatus = null with get,set member val BearerToken:String = null with get,set member val RefreshToken:String = null with get,set [] [] type EnableTwoFactorAuthenticationRequest() = inherit PutOperationUnTenanted() interface IReturn member val Code:String = null with get,set