mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-11 19:02:15 +08:00
9 lines
231 B
C#
9 lines
231 B
C#
namespace BuildingBlocks.PersistMessageProcessor;
|
|
|
|
public class PersistMessageOptions
|
|
{
|
|
public int? Interval { get; set; } = 30;
|
|
public bool Enabled { get; set; } = true;
|
|
public string? ConnectionString { get; set; }
|
|
}
|