/* Options: Date: 2026-06-01 14:59:27 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetDatesRange.* //ExcludeTypes: //DefaultImports: package:servicestack/servicestack.dart */ import 'package:servicestack/servicestack.dart'; // @Route("/translations/datesrange", "GET") class GetDatesRange implements IConvertible, IGet { String? Days; GetDatesRange({this.Days}); GetDatesRange.fromJson(Map json) { fromMap(json); } fromMap(Map json) { Days = json['Days']; return this; } Map toJson() => { 'Days': Days }; getTypeName() => "GetDatesRange"; TypeContext? context = _ctx; } TypeContext _ctx = TypeContext(library: 'www.imglobal.com', types: { 'GetDatesRange': TypeInfo(TypeOf.Class, create:() => GetDatesRange()), });