2023-09-17 22:13:42 +03:00
|
|
|
package GlobalData.SapforProfile;
|
2024-10-07 00:58:29 +03:00
|
|
|
import Common.Database.Objects.iDBObject;
|
2023-09-17 22:13:42 +03:00
|
|
|
import com.sun.org.glassfish.gmbal.Description;
|
|
|
|
|
public class SapforProfile extends iDBObject {
|
|
|
|
|
@Description("DEFAULT ''")
|
|
|
|
|
public String description = "";
|
|
|
|
|
@Description("DEFAULT 0")
|
|
|
|
|
public long creationDate= 0;
|
|
|
|
|
}
|