(* Options: Date: 2026-06-06 01:07:21 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: RiferimentoImpianto.* //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_Impianto() = inherit FK() member val Codice:Nullable = new Nullable() with get,set member val CodiceExport:String = null with get,set [] type FK_Anagrafica() = inherit FK() member val Codice:Nullable = new Nullable() with get,set member val CodiceExport:String = null with get,set type RuoloRiferimentoImpianto = | Cliente = 1 | Amministratore = 3 | Installatore = 4 | Proprietario = 5 | TerzoResponsabile = 6 | Progettista = 7 | Referente = 10 | Occupante = 11 | Conduttore = 13 [] type OptionalNullableDateTime() = inherit Optional() [] type IForeignKey = abstract Id:Nullable with get,set [] type IUniqueCodiceExport = abstract CodiceExport:String with get,set [] type IUniqueCodiceNumerico = abstract Codice:Nullable with get,set [] type Optional<'T>() = member val Value:String = null with get,set [] [] [] [] type RiferimentoImpianto() = interface IReturn member val Id:Nullable = new Nullable() with get,set member val CodiceExport:String = null with get,set member val Impianto:FK_Impianto = null with get,set member val Anagrafica:FK_Anagrafica = null with get,set member val Ruolo:Nullable = new Nullable() with get,set member val Note:String = null with get,set member val DataInizioIncarico:OptionalNullableDateTime = null with get,set