/* Options: Date: 2025-09-08 02:10:31 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.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: False //ExportValueTypes: False IncludeTypes: GetFreeLicense.* //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 MyApp.ServiceInterface; namespace MyApp.ServiceInterface { public partial class FreeLicenseResponse { public virtual string LicenseName { get; set; } public virtual string LicenseRef { get; set; } public virtual string LicenseKey { get; set; } public virtual LicenseType? LicenseType { get; set; } public virtual DateTime? CreatedDate { get; set; } public virtual DateTime? ExpiryDate { get; set; } public virtual string ExternalRef { get; set; } public virtual ResponseStatus ResponseStatus { get; set; } } [Route("/freelicense/{Ref}", "GET")] [Route("/GetFreeLicense", "GET")] public partial class GetFreeLicense : IReturn, IGet { public virtual string Ref { get; set; } } }