mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-19 02:12:10 +08:00
8 lines
122 B
C#
8 lines
122 B
C#
namespace BuildingBlocks.PersistMessageProcessor;
|
|
|
|
public enum MessageStatus
|
|
{
|
|
InProgress = 1,
|
|
Processed = 2
|
|
}
|