Created
October 21, 2008 23:50
-
-
Save jagregory/18484 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
public class FileStats | |
{ | |
public FileStats(int additions, int subtractions, string filename) | |
{ | |
Additions = additions; | |
Subtractions = subtractions; | |
Filename = filename; | |
} | |
public int Additions { get; private set; } | |
public int Subtractions { get; private set; } | |
public string Filename { get; private set; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment