mirror of
https://github.com/kiranhart/Auction-House.git
synced 2024-11-22 05:25:11 +01:00
extend storeable in bid interface
Took 24 seconds
This commit is contained in:
parent
6509bb5585
commit
5792ec99f3
@ -19,13 +19,14 @@
|
||||
package ca.tweetzy.auctionhouse.ahv3.api.auction;
|
||||
|
||||
import ca.tweetzy.auctionhouse.ahv3.api.Identifiable;
|
||||
import ca.tweetzy.auctionhouse.ahv3.api.Storeable;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.UUID;
|
||||
|
||||
public interface Bid extends Identifiable {
|
||||
public interface Bid extends Identifiable, Storeable<Bid> {
|
||||
|
||||
UUID getAuctionUUID();
|
||||
UUID getAuctionId();
|
||||
|
||||
UUID getBidderUUID();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user