package nl.voidcorp.discord.storage import javax.annotation.Generated import javax.persistence.ElementCollection import javax.persistence.Entity import javax.persistence.Id @Entity data class GuildStore( var guildId: Long, @ElementCollection var moderatorRoles: MutableList = mutableListOf(), @ElementCollection var adminRoles: MutableList = mutableListOf(), var defaultVerified: Boolean = false, @Id @Generated var id: Long? = null )