Skip to content

Instantly share code, notes, and snippets.

@gprasant
Created May 13, 2012 17:37
Show Gist options
  • Save gprasant/2689407 to your computer and use it in GitHub Desktop.
Save gprasant/2689407 to your computer and use it in GitHub Desktop.
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