11 lines
86 B
C#
11 lines
86 B
C#
using System;
|
|
|
|
namespace DrawGraph
|
|
{
|
|
public enum PageStatus
|
|
{
|
|
Create,
|
|
Edit
|
|
}
|
|
}
|