/* Options: Date: 2025-12-13 05:42:47 SwiftVersion: 5.0 Version: 8.30 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://catalog-jobs-dev.power.dev //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: ProductioDataSyncRequest.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/production-data-sync", "POST") public class ProductioDataSyncRequest : Codable { public var coordId:Int public var sourceType:ProductionSourceType public var month:Int required public init(){} } public enum ProductionSourceType : Int, Codable { case undefined = 0 case Solar = 1 case Wind = 2 case Hybrid = 10 }