/* Options: Date: 2026-03-22 20:52:32 Version: 8.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://guidsapi.bettor.webhop.biz //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: False //ExportValueTypes: False IncludeTypes: FetchGuids.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using FBiHBetting.Guids.Api.ServiceModel; namespace FBiHBetting.Guids.Api.ServiceModel { [Route("/guids")] public partial class FetchGuids : IReturn { public virtual int BatchSize { get; set; } } public partial class GuidsResponse { public virtual List Guids { get; set; } } }