I hereby claim:
- I am stevebrownlee on github.
- I am stevebrownlee (https://keybase.io/stevebrownlee) on keybase.
- I have a public key ASA5iIAajfglK4LYXrhCB54RMdSqF87HbuZT18e6f9CWGwo
To claim this, I am signing this object:
using System.Collections.Generic; | |
namespace Bangazon.Models | |
{ | |
public class GroupedProducts | |
{ | |
public int TypeId { get; set; } | |
public string TypeName { get; set; } | |
public int ProductCount { get; set; } | |
public IEnumerable<Product> Products { get; set; } |
I hereby claim:
To claim this, I am signing this object:
/* | |
=================================================================================== | |
L E S S C L A S S E S F O R A N I M A T I O N | |
=================================================================================== | |
*/ | |
.circle-common (@maxRadius, @borderSize, @sizeScale: 1, @scale:-1) { | |
@currentRadius: @maxRadius * @sizeScale; | |
@currentBorder: (@borderSize * @sizeScale); | |
width: @currentRadius; |
Verifying that +stevebrownlee is my blockchain ID. https://onename.com/stevebrownlee |
"use strict"; | |
/* | |
This object allows any object to define its own properties and methods. | |
Chainable. | |
Usage: | |
let foo = __.compose(Object.create(null), ObjectExtensions); | |
foo.property("propOne", 1).property("prop2", 2).def("fn", () => ({})); |