first commit

This commit is contained in:
Lee
2024-06-23 21:37:24 +01:00
parent e0ced1566c
commit eeb09ee1fd
14 changed files with 750 additions and 0 deletions

View File

@ -0,0 +1,19 @@
package cc.fascinated.bat.model;
import lombok.Getter;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;
import org.springframework.data.annotation.Id;
/**
* @author Fascinated (fascinated7)
*/
@RequiredArgsConstructor
@Getter
public class Guild {
/**
* The ID of the guild
*/
@NonNull @Id private final String id;
}