/* Options: Date: 2024-12-01 04:02:23 Version: 8.40 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://nkapi-sgepz3-auth.azurewebsites.net //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: WarmupRequest.* //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 Norkart.Api.Backbone.ServiceModel; namespace Norkart.Api.Backbone.ServiceModel { [Route("/warmup", "GET")] public partial class WarmupRequest : IReturn { } public partial class WarmupResponse { public WarmupResponse() { Dependencies = new List{}; } public virtual List Dependencies { get; set; } public partial class Initialization { public virtual string Name { get; set; } public virtual long Duration { get; set; } } } }