Add Coal Cents economy

This commit is contained in:
CoalGov Deploy
2026-05-04 17:00:05 +00:00
commit c8cc200004
73 changed files with 6873 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.librewiki.coalgov.model;
import java.util.UUID;
public record Fine(
long id,
UUID playerUuid,
UUID issuerUuid,
long amount,
String reason,
Long paidAt,
long createdAt
) {
public boolean paid() {
return paidAt != null;
}
}