/* Options: Date: 2025-12-06 05:29:49 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://idgen.sbbet.ath.cx //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: GetIds.* //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 DStack.IdGen.ServiceModel; namespace DStack.IdGen.ServiceModel { [Route("/ids")] public partial class GetIds : IReturn> { public GetIds() { Options = new Dictionary{}; } public virtual string Provider { get; set; } public virtual int BatchSize { get; set; } public virtual Dictionary Options { get; set; } } }