kz.greetgo.logging.structure.model.CategoryDestinationAssignment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo-logging-structure Show documentation
Show all versions of greetgo-logging-structure Show documentation
Logging mechanism using in greetgo!
package kz.greetgo.logging.structure.model;
import lombok.RequiredArgsConstructor;
@RequiredArgsConstructor
public class CategoryDestinationAssignment {
public final Category category;
public final Destination destination;
@Override
public String toString() {
return "assign{" + category + " -> " + destination + '}';
}
}