mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-21 03:33:23 +00:00
14 lines
164 B
Java
14 lines
164 B
Java
package com.volmit.iris.object;
|
|
|
|
import java.io.File;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class IrisRegistrant
|
|
{
|
|
private String loadKey;
|
|
|
|
private File loadFile;
|
|
}
|