10 lines
262 B
C#
10 lines
262 B
C#
|
|
namespace Domain.Constants
|
|||
|
|
{
|
|||
|
|
public static class EntityTypes
|
|||
|
|
{
|
|||
|
|
public const string Professional = "PhS_Professionals";
|
|||
|
|
public const string Institution = "PhS_Institutions";
|
|||
|
|
public const string Patient = "PhS_Patients";
|
|||
|
|
}
|
|||
|
|
}
|