Created
May 13, 2012 17:37
-
-
Save gprasant/2689407 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
namespace MvcApplication1.Models | |
{ | |
public class CordBloodUnit | |
{ | |
public int ID { get; set; } | |
public int HLA_A1 { get; set; } | |
public int HLA_A2 { get; set; } | |
public int HLA_B1 { get; set; } | |
public int HLA_B2 { get; set; } | |
public int HLA_C1 { get; set; } | |
public int HLA_C2 { get; set; } | |
public int DRB_1 { get; set; } | |
public int DRB_2 { get; set; } | |
public int DQB_1 { get; set; } | |
public int DQB_2 { get; set; } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment