mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 10:32:09 +08:00
9 lines
136 B
C#
9 lines
136 B
C#
namespace BuildingBlocks.PersistMessageProcessor;
|
|
|
|
public enum MessageStatus
|
|
{
|
|
Unknown = 0,
|
|
InProgress = 1,
|
|
Processed = 2
|
|
}
|