Files
rxnorm/tests/Strata.RxNorm.Biz.Test.Unit/RxNorm/RxnComponentIngredient.cs
T

18 lines
466 B
C#

using System.ComponentModel.DataAnnotations;
namespace Strata.RxNorm.Biz.Test.Unit.RxNorm
{
public class RxnComponentIngredient
{
[Key]
public int Key { get; set; }
public string ComponentRxcui { get; set; }
public string ComponentDescription { get; set; }
public string IngredientRxcui { get; set; }
public string IngredientDescription { get; set; }
public string Strength { get; set; }
}
}