10 lines
163 B
C#
10 lines
163 B
C#
using System;
|
|
namespace Start.Shared {
|
|
public enum BookmarkStatus {
|
|
OK = 1,
|
|
BookmarkDoesNotExist = 2,
|
|
OwnerDoesNotMatch = 3,
|
|
UserDoesNotExist = 4
|
|
}
|
|
}
|