13 lines
245 B
C#
13 lines
245 B
C#
|
namespace PolyclinicWebAppSuretor
|
|||
|
{
|
|||
|
public class RestrictionEnum
|
|||
|
{
|
|||
|
public enum PageVisible
|
|||
|
{
|
|||
|
AllowAnyBody = 0,
|
|||
|
AllowOnlyAuthorized = 1,
|
|||
|
AllowOnlyNotAuthorized = 2,
|
|||
|
}
|
|||
|
}
|
|||
|
}
|