Skip to content

Commit

Permalink
thunderpay-api: billing[util(tag - Tag)]
Browse files Browse the repository at this point in the history
  • Loading branch information
krishpranav committed Jan 8, 2025
1 parent 0f353f8 commit 4238f49
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
/**
* @file Tag
* @author Krisna Pranav
* @brief Tag
* @version 1.0
* @date 2024-11-25
*
* @copyright Copyright (c) 2024 ThunderPayment Developers, Krisna Pranav
*
*/

package org.thunderpay.billing.util.tag;

import java.util.UUID;
import org.thunderpay.billing.ObjectType;
import org.thunderpay.billing.util.entity.Entity;

public interface Tag extends Entity {

UUID getTagDefinitionId();

ObjectType getObjectType();

UUID getObjectId();
}

0 comments on commit 4238f49

Please sign in to comment.