/* Options: Date: 2025-12-16 07:42:27 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://mds-api.mojomotorcycles.com.au //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: Models.* //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 Mds.Api.ServiceModel; namespace Mds.Api.ServiceModel { public partial class ModelResponse { public virtual int Id { get; set; } public virtual string Name { get; set; } public virtual bool Published { get; set; } } [Route("/models/{TypeId}")] public partial class Models : IReturn { public virtual int TypeId { get; set; } } public partial class ModelsResponse { public ModelsResponse() { Items = new List{}; } public virtual ResponseStatus ResponseStatus { get; set; } public virtual bool IsSuccess { get; set; } public virtual string Message { get; set; } public virtual List Items { get; set; } } }