/* Options: Date: 2025-09-07 08:49:35 Version: 8.81 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://account.servicestack.net //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MythzBlog.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/mythz_blog") // @Route("/MythzBlog") class MythzBlog implements IConvertible, IPost { int? p; MythzBlog({this.p}); MythzBlog.fromJson(Map json) { fromMap(json); } fromMap(Map json) { p = json['p']; return this; } Map toJson() => { 'p': p }; getTypeName() => "MythzBlog"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'account.servicestack.net', types: { 'MythzBlog': TypeInfo(TypeOf.Class, create:() => MythzBlog()), });