Skip to content

Instantly share code, notes, and snippets.

@KensoDev
Created January 18, 2010 05:50
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 KensoDev/279812 to your computer and use it in GitHub Desktop.
Save KensoDev/279812 to your computer and use it in GitHub Desktop.
/// <summary>
/// credit card number and an attached weight number
/// </summary>
public class CreditCardNumbers
{
public int number { get; set; }
public int weightNumber { get; set; }
/// <summary>
/// Initializes a new instance of the <see cref="CreditCardNumbers"/> class.
/// </summary>
/// <param name="number">The number.</param>
/// <param name="weightNumber">The weight number.</param>
public CreditCardNumbers(int number, int weightNumber)
{
this.number = number;
this.weightNumber = weightNumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment