AuctionInfopublic class AuctionInfo extends Object
Fields Summary |
---|
private long | id | private String | description | private Date | ends | private Float | maxAmount |
Constructors Summary |
---|
public AuctionInfo(long id, String description, Date ends, Float maxAmount)
this.id = id;
this.description = description;
this.ends = ends;
this.maxAmount = maxAmount;
|
|