CropTraitCodeAttachmentService.java

/*
 * Copyright 2026 Global Crop Diversity Trust
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root folder or http://www.apache.org/licenses/LICENSE-2.0
 */

package org.gringlobal.service;

import org.gringlobal.model.CropTraitCode;
import org.gringlobal.model.CropTraitCodeAttach;

/**
 * The Interface CropTraitCodeAttachmentService.
 */
public interface CropTraitCodeAttachmentService extends AttachmentService<CropTraitCode, CropTraitCodeAttach, CropTraitCodeAttachmentService.CropTraitCodeAttachmentRequest> {

	class CropTraitCodeAttachmentRequest extends AttachmentService.AttachmentRequest<CropTraitCodeAttach> {
	}
}