/* Options: Date: 2026-05-09 17:59:26 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://ws4.fibudata.net //GlobalNamespace: //MakePartial: True //MakeVirtual: True //MakeInternal: False //MakeDataContractsExtensible: False //AddNullableAnnotations: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //InitializeCollections: True //ExportValueTypes: False IncludeTypes: SaltRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using FIBUdataServiceStack.ServiceModel.Messages; namespace FIBUdataServiceStack.ServiceModel.Messages { [Route("/auth/GetSalt/{Mandnr}", "GET, POST")] public partial class SaltRequest : IReturn { public virtual long Mandnr { get; set; } } public partial class SaltResponse { public virtual string Salt { get; set; } } }