about summary refs log tree commit diff stats
path: root/data/maps/the_relentless/rooms/Mastery.txtpb
Commit message (Expand)AuthorAgeFilesLines
* Added the_relentlessStar Rauchenberger2025-08-181-0/+6
'n21' href='#n21'>21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.fourisland.instadisc.Database;

import com.sleepycat.persist.model.Entity;
import com.sleepycat.persist.model.PrimaryKey;

/**
 *
 * @author hatkirby
 */
@Entity
public class IDConfig {
    
    @PrimaryKey
    private String key;
    
    private String value;
    
    public String getKey()
    {
        return key;
    }
    
    public String getValue()
    {
        return value;
    }
    
    public void setKey(String key)
    {
        this.key = key;
    }
    
    public void setValue(String value)
    {
        this.value = value;
    }

}