/* Options: Date: 2026-04-05 18:22:55 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://internal.thebunkerbridge.com //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: EnquiriesLive.* //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.Web.Mvc; using Bridge.Core.ViewModels; using Bridge.Private.Api.DTO; namespace Bridge.Core.ViewModels { public partial class EntityContactViewModel { public EntityContactViewModel() { AccessLevels = new List{}; } public virtual int Id { get; set; } public virtual Guid Guid { get; set; } public virtual int EntityId { get; set; } public virtual string FirstName { get; set; } public virtual string LastName { get; set; } public virtual string Initials { get; set; } public virtual string Password { get; set; } public virtual string EmailAddress { get; set; } public virtual bool DarkMode { get; set; } public virtual EntityViewModel Entity { get; set; } public virtual DateTime? LastActive { get; set; } public virtual Guid ImageGuid { get; set; } public virtual int? DialingCodeCountryId { get; set; } public virtual string TelephoneNumber { get; set; } public virtual bool IsBridgeClient { get; set; } public virtual List AccessLevels { get; set; } } public partial class GetEnquiryChatListForContactIdViewModel { public virtual int Id { get; set; } public virtual Guid Guid { get; set; } public virtual Guid ChatGuid { get; set; } public virtual int EntityId { get; set; } public virtual string EntityName { get; set; } public virtual int EntityContactId { get; set; } public virtual string EntityContactFirstName { get; set; } public virtual string EntityContactLastName { get; set; } public virtual string EntityContactName { get; set; } public virtual string EntityContactRoleInChat { get; set; } public virtual int ChattingWithEntityId { get; set; } public virtual string ChattingWithEntityName { get; set; } public virtual int ChattingWithEntityContactId { get; set; } public virtual string ChattingWithEntityContactFirstName { get; set; } public virtual string ChattingWithEntityContactLastName { get; set; } public virtual string ChattingWithEntityContactName { get; set; } public virtual string ChattingWithEntityContactNameAndEntity { get; set; } public virtual string ChattingWithEntityContactRoleInChat { get; set; } public virtual int UnreadMessagesForEntityContact { get; set; } public virtual string LastMessageDateTime { get; set; } public virtual string LastMessageText { get; set; } public virtual int ChatId { get; set; } public virtual bool LastMessageWasFromMe { get; set; } public virtual bool LastMessageDelivered { get; set; } public virtual bool LastMessageRead { get; set; } public virtual Guid ChattingWithEntityContactGuid { get; set; } public virtual int DealRecapCode { get; set; } public virtual string BannerText { get; set; } public virtual Guid ChattingWithEntityContactImageGuid { get; set; } } public partial class GetLiveEnquiriesForContactAndEntityBeingWorkedOnByListViewModel { public virtual string HandlingEnquiryName { get; set; } } public partial class GetLiveEnquiriesForContactAndEntityCompaniesListViewModel { public virtual string CompanyName { get; set; } public virtual Guid ChatGuid { get; set; } public virtual Guid EntityContactGuid { get; set; } public virtual Guid EntityContactImageGuid { get; set; } public virtual string EntityContactName { get; set; } public virtual int UnreadMessagesForEntityContact { get; set; } } public partial class GetLiveEnquiriesForContactAndEntityViewModel { public GetLiveEnquiriesForContactAndEntityViewModel() { FlagRound = new byte[]{}; GetLiveEnquiriesForContactAndEntityCompaniesList = new List{}; GetLiveEnquiriesForContactAndEntityBeingWorkedOnByList = new List{}; GetEnquiryChatListForContactId = new List{}; GetLiveEnquiriesForContactAndEntityVolumeDescription = new List{}; } public virtual int Id { get; set; } public virtual Guid Guid { get; set; } public virtual byte[] FlagRound { get; set; } public virtual string CountryName { get; set; } public virtual string PortName { get; set; } public virtual double Latitude { get; set; } public virtual double Longitude { get; set; } public virtual string VesselName { get; set; } public virtual int IMONumber { get; set; } public virtual string DeliveryDate { get; set; } public virtual string Companies { get; set; } public virtual List GetLiveEnquiriesForContactAndEntityCompaniesList { get; set; } public virtual List GetLiveEnquiriesForContactAndEntityBeingWorkedOnByList { get; set; } public virtual List GetEnquiryChatListForContactId { get; set; } public virtual List GetLiveEnquiriesForContactAndEntityVolumeDescription { get; set; } } public partial class GetLiveEnquiriesForContactAndEntityVolumeDescriptionViewModel { public virtual string VolDescription { get; set; } } public partial class LiveEnquiriesForContactAndEntityViewModel { public LiveEnquiriesForContactAndEntityViewModel() { GetLiveEnquiriesForContactAndEntity = new List{}; } public virtual bool JustMyEnquiries { get; set; } public virtual bool CanViewCompanyEnquiries { get; set; } public virtual Guid EntityContactGuid { get; set; } public virtual bool ShowCreateNewEnquiryButton { get; set; } public virtual EntityContactViewModel EntityContact { get; set; } public virtual List GetLiveEnquiriesForContactAndEntity { get; set; } } } namespace Bridge.Private.Api.DTO { [Route("/Enquiries/Live", "GET")] public partial class EnquiriesLive : IReturn { public virtual bool JustMyEnquiries { get; set; } } }