(* Options: Date: 2025-12-06 07:06:56 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://backoffice-api.brovs.com //GlobalNamespace: BackofficeApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAllNewsRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BackofficeApi open System open System.IO 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 GetAllNewsResponse() = member val News:ResizeArray = new ResizeArray() with get,set [] [] type GetAllNewsRequest() = interface IReturn interface IGet