(* Options: Date: 2026-06-06 01:02:53 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://link.dc8.unico3.cloud //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: VoceListino.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Unico3.Link.API.Messages open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations [] type FK() = member val Id:Nullable = new Nullable() with get,set [] type FK_Listino() = inherit FK() member val Codice:String = null with get,set member val Descrizione:String = null with get,set [] type FK_Articolo() = inherit FK() member val Codice:String = null with get,set [] type IForeignKey = abstract Id:Nullable with get,set [] type IUniqueDescrizione = abstract Descrizione:String with get,set [] type IUniqueCodice = abstract Codice:String with get,set [] [] type VoceListino() = interface IReturn member val Listino:FK_Listino = null with get,set member val Articolo:FK_Articolo = null with get,set member val CodiceOrdine:String = null with get,set member val Barcode:String = null with get,set member val PrezzoAcquisto:Nullable = new Nullable() with get,set member val PrezzoVendita:Nullable = new Nullable() with get,set