10 lines
180 B
C#
10 lines
180 B
C#
|
namespace PolyclinicWebAppImplementer
|
|||
|
{
|
|||
|
public enum PageVisible
|
|||
|
{
|
|||
|
AllowAnyBody = 0,
|
|||
|
AllowOnlyAuthorized = 1,
|
|||
|
AllowOnlyNotAuthorized = 2,
|
|||
|
}
|
|||
|
}
|