diff options
author | crupest <crupest@outlook.com> | 2020-03-12 19:56:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-12 19:56:20 +0800 |
commit | d51954c2eaf07769e045270a02c19e46e01fe73f (patch) | |
tree | 70681348ddfc3bc8c3d9a92ae010a02020830573 /Timeline.ErrorCodes | |
parent | eb9554b4fe78eaced12329e7fd7d8d62a58a1c6c (diff) | |
parent | 45527eb0c836d14725019c3facdff6c8391531cf (diff) | |
download | timeline-d51954c2eaf07769e045270a02c19e46e01fe73f.tar.gz timeline-d51954c2eaf07769e045270a02c19e46e01fe73f.tar.bz2 timeline-d51954c2eaf07769e045270a02c19e46e01fe73f.zip |
Merge pull request #69 from crupest/image
Post image feature.
Diffstat (limited to 'Timeline.ErrorCodes')
-rw-r--r-- | Timeline.ErrorCodes/ErrorCodes.cs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/Timeline.ErrorCodes/ErrorCodes.cs b/Timeline.ErrorCodes/ErrorCodes.cs index eca0e18b..0af36383 100644 --- a/Timeline.ErrorCodes/ErrorCodes.cs +++ b/Timeline.ErrorCodes/ErrorCodes.cs @@ -56,16 +56,14 @@ public const int BadFormat_BadSize = 1_103_00_03;
}
- public static class TimelineCommon
+ public static class TimelineController
{
public const int NameConflict = 1_104_01_01;
public const int NotExist = 1_104_02_01;
public const int MemberPut_NotExist = 1_104_03_01;
- }
-
- public static class TimelineController
- {
- public const int QueryRelateNotExist = 1_105_01_01;
+ public const int QueryRelateNotExist = 1_104_04_01;
+ public const int PostNotExist = 1_104_05_01;
+ public const int PostNoData = 1_104_05_02;
}
}
}
|