/* Options: Date: 2025-07-04 09:48:56 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://doapigw.baasbv.nl/api //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: QuickLookup.* //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.Drawing; using IDB.API.DTO.Registrationprofile; using IDB.API.DTO.Controls.QuickLookup; using IDB.API.DTO.Controls.Operations; namespace IDB.API.DTO.Controls.Operations { public partial class QuickLookupResponse : IBaseQuickLookupResponse { public QuickLookupResponse() { Values = new List>{}; QuickAddOptions = new List{}; } public virtual int NumberOfAllRecords { get; set; } public virtual List> Values { get; set; } public virtual List QuickAddOptions { get; set; } } } namespace IDB.API.DTO.Controls.QuickLookup { public partial interface IBaseQuickLookupResponse { int NumberOfAllRecords { get; set; } List QuickAddOptions { get; set; } } public partial class QuickAddOption { public virtual string Name { get; set; } public virtual string EntityType { get; set; } } public partial class QuickLookup : IReturn { public QuickLookup() { DependableFields = new List{}; } public virtual Guid? DocumentID { get; set; } public virtual string DocumentFieldID { get; set; } public virtual string RegistrationProfileFieldID { get; set; } public virtual string LookupValue { get; set; } public virtual List DependableFields { get; set; } public virtual bool ApplyOptionalFilters { get; set; } } } namespace IDB.API.DTO.Registrationprofile { public partial class RegistrationProfileFieldValue { public virtual Guid DocumentFieldID { get; set; } public virtual string Value { get; set; } public virtual string ShadowValue { get; set; } public virtual bool IsModifiedByUser { get; set; } } }