event #10

Merged
v4l3n71n merged 9 commits from event into master 2023-01-15 19:54:19 +00:00
Showing only changes of commit 3c053b94ee - Show all commits

View File

@ -0,0 +1,13 @@
package com.covas.Entity;
import io.quarkus.mongodb.panache.PanacheMongoEntity;
import io.quarkus.mongodb.panache.common.MongoEntity;
@MongoEntity(collection="event")
public class EventEntity extends PanacheMongoEntity {
public String name;
public Short status;
}