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