/* Options: Date: 2025-12-06 09:22:17 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RolesSystemFunctionsLookup.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/roles_system_functions", "GET") // @DataContract class RolesSystemFunctionsLookup implements IReturn>, IConvertible, IGet { // @DataMember(Order=2) int? rolesId; // @DataMember(Order=3) int? systemFunctionsId; RolesSystemFunctionsLookup({this.rolesId,this.systemFunctionsId}); RolesSystemFunctionsLookup.fromJson(Map json) { fromMap(json); } fromMap(Map json) { rolesId = json['rolesId']; systemFunctionsId = json['systemFunctionsId']; return this; } Map toJson() => { 'rolesId': rolesId, 'systemFunctionsId': systemFunctionsId }; createResponse() => []; getResponseTypeName() => "List"; getTypeName() => "RolesSystemFunctionsLookup"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'sfgboxapi.dev.scadsoftware.com', types: { 'RolesSystemFunctionsLookup': TypeInfo(TypeOf.Class, create:() => RolesSystemFunctionsLookup()), });