(* Options: Date: 2025-12-06 07:51:01 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://business-api.brovs.com //GlobalNamespace: BusinessApi //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: GetAllEatingSuitabilityRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace BusinessApi open System open System.IO open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type EatingSuitability() = member val Id:Int64 = new Int64() with get,set member val Label:String = null with get,set member val Slug:String = null with get,set member val Position:Int32 = new Int32() with get,set member val CreatedAt:DateTimeOffset = new DateTimeOffset() with get,set member val UpdatedAt:DateTimeOffset = new DateTimeOffset() with get,set [] type EatingSuitabilityDto() = member val Label:String = null with get,set member val Slug:EatingSuitability = null with get,set [] type IAudit = abstract CreatedAt:DateTimeOffset with get,set abstract UpdatedAt:DateTimeOffset with get,set [] type GetAllEatingSuitabilityResponse() = member val EatingSuitabilities:ResizeArray = new ResizeArray() with get,set [] [] type GetAllEatingSuitabilityRequest() = interface IReturn interface IGet