CropTraitAttachmentService.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.CropTrait;
import org.gringlobal.model.CropTraitAttach;
/**
* The Interface CropTraitAttachmentService.
*/
public interface CropTraitAttachmentService extends AttachmentService<CropTrait, CropTraitAttach, CropTraitAttachmentService.CropTraitAttachmentRequest> {
class CropTraitAttachmentRequest extends AttachmentService.AttachmentRequest<CropTraitAttach> {
}
}