/* Options: Date: 2024-09-27 22:39:28 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://blazor-gallery.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: PatchPlaylists.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart,dart:typed_data */ import 'package:servicestack/servicestack.dart'; import 'dart:typed_data'; class Playlists implements IConvertible { int? playlistId; String? name; Playlists({this.playlistId,this.name}); Playlists.fromJson(Map json) { fromMap(json); } fromMap(Map json) { playlistId = json['playlistId']; name = json['name']; return this; } Map toJson() => { 'playlistId': playlistId, 'name': name }; getTypeName() => "Playlists"; TypeContext? context = _ctx; } // @Route("/playlists/{PlaylistId}", "PATCH") class PatchPlaylists implements IReturn, IPatch, IPatchDb, IConvertible { int? playlistId; String? name; PatchPlaylists({this.playlistId,this.name}); PatchPlaylists.fromJson(Map json) { fromMap(json); } fromMap(Map json) { playlistId = json['playlistId']; name = json['name']; return this; } Map toJson() => { 'playlistId': playlistId, 'name': name }; createResponse() => IdResponse(); getResponseTypeName() => "IdResponse"; getTypeName() => "PatchPlaylists"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'blazor_gallery.servicestack.net', types: { 'Playlists': TypeInfo(TypeOf.Class, create:() => Playlists()), 'PatchPlaylists': TypeInfo(TypeOf.Class, create:() => PatchPlaylists()), });