Created
January 18, 2010 05:50
-
-
Save KensoDev/279812 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <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