(* Options: Date: 2024-12-23 11:52:18 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetNewsRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace ConsumerApi open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type NewsDto() = member val Subject:String = null with get,set member val Body:String = null with get,set member val Author:String = null with get,set member val CreatedAt:DateTime = new DateTime() with get,set [] type GetNewsResponse() = member val News:ResizeArray = new ResizeArray() with get,set [] [] type GetNewsRequest() = interface IReturn interface IGet