Advertisement
ace88

Untitled

Jan 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. public class Auction {
  2.    
  3.     private ArrayList<Bid> bids = new ArrayList<>();
  4.     private Dog dog = null;
  5.     private int number = 0;
  6.    
  7.     public Auction(int number, Dog dog) {
  8.         this.dog = dog;
  9.         this.number = number;
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement