(* Options: Date: 2026-06-06 00:59:27 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: Comune.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace Unico3.Core.DomainModel.Infrastructure 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_Zona() = inherit FK() member val Sigla:String = null with get,set member val Descrizione:String = null with get,set [] type OptionalNullableDouble() = inherit Optional() [] type OptionalNullableInteger() = inherit Optional() [] type IUniqueSigla = abstract Sigla:String with get,set [] type IForeignKey = abstract Id:Nullable with get,set [] type IUniqueDescrizione = abstract Descrizione:String with get,set [] type Optional<'T>() = member val Value:String = null with get,set [] [] [] [] type Comune() = interface IReturn member val CodiceExport:String = null with get,set member val Id:Nullable = new Nullable() with get,set member val Denominazione:String = null with get,set member val CAP:String = null with get,set member val Provincia:String = null with get,set member val Zona:FK_Zona = null with get,set member val IsEsclusoDaListe:Nullable = new Nullable() with get,set member val CodiceISTAT:String = null with get,set member val DurezzaTotaleAcqua:OptionalNullableDouble = null with get,set member val TipoRCEE:OptionalNullableInteger = null with get,set