Created
April 20, 2023 14:40
-
-
Save edudant/5d24c5381fec4433aa2cb25f3f497fc7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package cz.datalite.tsm.pm.model | |
import cz.datalite.tsm.commons.model.AbstractCodeTableEntity | |
import java.util.* | |
class MaintenanceActivityGroup( | |
code: String, name: String, | |
) : AbstractCodeTableEntity<UUID>(code, name) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment