Skip to content

Commit

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

package org.thunderpay.billing.util.entity;

import java.util.UUID;
import org.joda.time.DateTime;

public interface Entity {
public UUID getId();

public DateTime getCreatedDate();

public DateTime getUpdatedData();
}

0 comments on commit 2ba41f9

Please sign in to comment.