/* Options:
Date: 2025-05-12 20:03:31
Version: 8.53
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://test.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: HelloWithDescription.*
//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 Test.ServiceModel;
namespace Test.ServiceModel
{
///
///Description on HelloWithDescription type
///
public partial class HelloWithDescription
: IReturn
{
public virtual string Name { get; set; }
}
///
///Description on HelloWithDescriptionResponse type
///
public partial class HelloWithDescriptionResponse
{
public virtual string Result { get; set; }
}
}