/* Options: Date: 2025-12-06 13:27:11 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://etc-api.vsmlab.vn //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: UpdateAsRead.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { /** * Cập nhật sang đã đọc theo notification Id */ @Route(Path="/notifications/{Id}", Verbs="Post") // @Route(Path="/notifications", Verbs="Post") public static class UpdateAsRead implements IReturn { public String id = null; public String getId() { return id; } public UpdateAsRead setId(String value) { this.id = value; return this; } private static Object responseType = IResponseRequest.class; public Object getResponseType() { return responseType; } } public static interface IResponseRequest { public Integer code = null; public String message = null; } }