Back release

This commit is contained in:
Administrator
2025-04-25 20:27:20 +00:00
parent 0217c549a3
commit bd24a75177
38 changed files with 179 additions and 1074 deletions

View File

@@ -0,0 +1,11 @@
package ru.kayashov.bar.model;
import lombok.Builder;
import lombok.Getter;
@Builder
@Getter
public class AbstractSendMessage {
private Long chatId;
private String message;
}