/* Options: Date: 2026-02-04 07:56:28 Version: 8.10 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://webservices.mbukdatabase.co.uk/MBMicrositeFooterService //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: False //ExportValueTypes: False IncludeTypes: MicrositeDataRequest.* //ExcludeTypes: //AddNamespaces: //AddDefaultXmlNamespace: http://schemas.servicestack.net/types */ using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.Runtime.Serialization; using ServiceStack; using ServiceStack.DataAnnotations; using MBMicrositeFooterService.DataLib.Model; using MBMicrositeFooterService.ServiceModel; namespace MBMicrositeFooterService.DataLib.Model { public partial class LinkData { public virtual int LinkID { get; set; } public virtual string LinkText { get; set; } public virtual string LinkUrl { get; set; } } } namespace MBMicrositeFooterService.ServiceModel { [Route("/links/", "GET")] public partial class MicrositeDataRequest : IReturn { } public partial class MicrositeDataResponse { public virtual List linkData { get; set; } public virtual Response Status { get; set; } } public partial class Response { public virtual string Code { get; set; } public virtual string Message { get; set; } } }