12 lines
151 B
C#
12 lines
151 B
C#
namespace Tornado3_2026Election.Domain;
|
|
|
|
public enum ScheduleQueueItemState
|
|
{
|
|
Queued,
|
|
Next,
|
|
Sending,
|
|
OnAir,
|
|
Completed,
|
|
Error
|
|
}
|