11 lines
340 B
C#
11 lines
340 B
C#
namespace adas_core.Domain.Models.SystemAlerts;
|
|
|
|
/// <summary>
|
|
/// Represents a queue, a data structure that follows the First In, First Out (FIFO) principle for managing elements.
|
|
/// </summary>
|
|
public class Queue
|
|
{
|
|
public string? Name { get; set; }
|
|
public ulong Messages { get; set; }
|
|
public ulong Consumers { get; set; }
|
|
} |