/* Options: Date: 2025-04-04 17:19:18 SwiftVersion: 5.0 Version: 5.140 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.clubmanagercentral.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True IncludeTypes: FindBranchCreated.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/api/Query/BranchCreated") // @AutoQueryViewer(Description="", IconUrl="octicon:database", Title="BranchCreated") public class FindBranchCreated : QueryDb, IReturn { public typealias Return = QueryResponse required public init(){ super.init() } required public init(from decoder: Decoder) throws { try super.init(from: decoder) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) } } public class BranchCreatedInstance : Codable { public var branchCreatedId:Int? public var parentBranchId:Int? public var parentMemberId:Int? public var childBranchId:Int? public var discountPercent:Int? public var commissionPercent:Int? public var createdByUserId:Int? public var created:Date? public var deleted:Date? public var deletedByUserId:Int? public var createdUserId:Int? required public init(){} }