16 lines
414 B
C#
16 lines
414 B
C#
namespace AccessQueueService.Models
|
|
{
|
|
public class AccessQueueConfig
|
|
{
|
|
public int? CapacityLimit { get; set; }
|
|
public int? ActivitySeconds { get; set; }
|
|
public int? ExpirationSeconds { get; set; }
|
|
public bool? RollingExpiration { get; set; }
|
|
|
|
public AccessQueueConfig Clone()
|
|
{
|
|
return (AccessQueueConfig)this.MemberwiseClone();
|
|
}
|
|
}
|
|
}
|