10 lines
218 B
C#
10 lines
218 B
C#
namespace HospitalDataModels.Models
|
|
{
|
|
public interface IDrugModel : IId
|
|
{
|
|
string Name { get; }
|
|
string Comment { get; }
|
|
int ProcedureId { get; }
|
|
int? SymptomId { get; }
|
|
}
|
|
} |