BlazorStart/Start/Server/Data/Services/Interfaces/BookmarkStatus.cs

10 lines
188 B
C#
Raw Normal View History

2021-11-14 01:19:28 +00:00
using System;
namespace Start.Server.Data.Services.Interfaces {
public enum BookmarkStatus {
OK = 1,
BookmarkDoesNotExist = 2,
OwnerDoesNotMatch = 3,
UserDoesNotExist = 4
}
}