/* Options: Date: 2026-01-27 18:42:59 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://buildmax.org //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: GetJsonPicklistItems.* //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.Collections.ObjectModel; using System.IO; using ScannerVision.WebService.Json.Dto; namespace ScannerVision.WebService.Json.Dto { public partial class GetJsonPicklistItems : JsonDto, IReturn { public virtual string TemplateGuid { get; set; } public virtual string Guid { get; set; } public virtual IDictionary Answers { get; set; } } public partial class JsonDto { } public partial class JsonPicklistItemsResponse : JsonDto { public JsonPicklistItemsResponse() { Items = new JsonPicklistItem[]{}; } public virtual string Guid { get; set; } public virtual JsonPicklistItem[] Items { get; set; } } }