Skip to content

Instantly share code, notes, and snippets.

@awebneck
Created March 8, 2011 21:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awebneck/861042 to your computer and use it in GitHub Desktop.
Save awebneck/861042 to your computer and use it in GitHub Desktop.
package com.moontoast.cremefraiche.model.vo {
public class DealVO {
public var startDate:uint; //Timestamp in milliseconds
public var endDate:uint; //Timestamp in milliseconds
public var tipLimited:Boolean;
public var discounted:Boolean;
public var tippingPoint:uint;
public var tipped:Boolean;
public var currentPurchases:uint;
public var discountedPrice:Number;
}
}
// A DealVO should be set as the property "deal" on a ProductVO, if applicable.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment