(* Options: Date: 2025-12-13 05:51:22 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //GlobalNamespace: //MakeDataContractsExtensible: False //AddReturnMarker: True //AddDescriptionAsComments: True //AddDataContractAttributes: False //AddIndexesToDataMembers: False //AddGeneratedCodeAttributes: False //AddResponseStatus: False //AddImplicitVersion: //ExportValueTypes: False IncludeTypes: ProductioDataSyncRequest.* //ExcludeTypes: //InitializeCollections: True //AddNamespaces: *) namespace powerDev.Common.Types open System open System.Collections open System.Collections.Generic open System.Runtime.Serialization open ServiceStack open ServiceStack.DataAnnotations type ProductionSourceType = | undefined = 0 | Solar = 1 | Wind = 2 | Hybrid = 10 [] [] type ProductioDataSyncRequest() = member val CoordId:Int32 = new Int32() with get,set member val SourceType:ProductionSourceType = new ProductionSourceType() with get,set member val Month:Int32 = new Int32() with get,set