/* Options: Date: 2026-06-01 15:35:10 Version: 8.22 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://imzagerservices.eyyubiye.bel.tr //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: GetTimeStamp.* //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 System.Security.Cryptography.X509Certificates; using System.Xml; using DaB.Imzager.Services.ServiceModel; namespace DaB.Imzager.Services.ServiceModel { [Route("/GetTimeStamp/{UserName}")] public partial class GetTimeStamp : IReturn { public virtual string UserName { get; set; } public virtual string Password { get; set; } public virtual string LogHash { get; set; } } public partial class GetTimeStampResponse { public GetTimeStampResponse() { Result = new byte[]{}; } public virtual byte[] Result { get; set; } public virtual bool ServiceSuccessResult { get; set; } public virtual string ErrorMesage { get; set; } } }