' Options: 'Date: 2026-04-05 18:20:43 'Version: 6.110 'Tip: To override a DTO option, remove "''" prefix before updating 'BaseUrl: https://internal.thebunkerbridge.com ' '''GlobalNamespace: '''MakePartial: True '''MakeVirtual: True '''MakeDataContractsExtensible: False '''AddReturnMarker: True '''AddDescriptionAsComments: True '''AddDataContractAttributes: False '''AddIndexesToDataMembers: False '''AddGeneratedCodeAttributes: False '''AddResponseStatus: False '''AddImplicitVersion: '''InitializeCollections: True '''ExportValueTypes: False 'IncludeTypes: EnquiryCreate.* '''ExcludeTypes: '''AddNamespaces: '''AddDefaultXmlNamespace: http://schemas.servicestack.net/types Imports System Imports System.Collections Imports System.Collections.Generic Imports System.Runtime.Serialization Imports ServiceStack Imports ServiceStack.DataAnnotations Imports System.Web.Mvc Imports Bridge.Core.ViewModels Imports Bridge.Core.Results Imports Bridge.Private.Api.DTO Namespace Global Namespace Bridge.Core.Results Public Partial Class SavingResult Public Sub New() Errors = New List(Of SavingResultErrors) End Sub Public Overridable Property Id As Nullable(Of Integer) Public Overridable Property GuidId As Nullable(Of Guid) Public Overridable Property Status As SavingResultStatus Public Overridable Property Errors As List(Of SavingResultErrors) End Class Public Partial Class SavingResultErrors Public Overridable Property [Error] As String End Class Public Enum SavingResultStatus Success [Error] End Enum End Namespace Namespace Bridge.Core.ViewModels Public Partial Class CreateEnquiryGradesViewModel Public Overridable Property Id As Nullable(Of Integer) Public Overridable Property Deleted As Boolean Public Overridable Property ProductId As Nullable(Of Integer) Public Overridable Property VersionId As Nullable(Of Integer) Public Overridable Property GradeId As Nullable(Of Integer) Public Overridable Property SpecificationComments As String Public Overridable Property VolumeFrom As Nullable(Of Integer) Public Overridable Property VolumeTo As Nullable(Of Integer) Public Overridable Property UnitId As Nullable(Of Integer) End Class End Namespace Namespace Bridge.Private.Api.DTO Public Partial Class EnquiryCreate Implements IReturn(Of SavingResult) Public Sub New() SelectedEntityContactIds = New List(Of String) EnquiryGrades = New List(Of CreateEnquiryGradesViewModel) End Sub Public Overridable Property AccountId As Nullable(Of Integer) Public Overridable Property Agent As String Public Overridable Property BuyerEmailAddress As String Public Overridable Property BuyerCompany As String Public Overridable Property CreditTermDays As Nullable(Of Integer) Public Overridable Property DateFrom As Nullable(Of Date) Public Overridable Property DateTo As Nullable(Of Date) Public Overridable Property DeliveryMethodId As Nullable(Of Integer) Public Overridable Property GeneralComments As String Public Overridable Property PortId As Nullable(Of Integer) Public Overridable Property RequestedTermsType As String Public Overridable Property VesselId As Nullable(Of Integer) Public Overridable Property SupplyDeskEntityContactId As Nullable(Of Integer) Public Overridable Property SelectedEntityContactIds As List(Of String) Public Overridable Property EnquiryGrades As List(Of CreateEnquiryGradesViewModel) End Class End Namespace End Namespace