* init * minor update * clean up * minor cleanup * update changelog * update changelog again --------- Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
11 lines
150 B
C#
11 lines
150 B
C#
namespace ErsatzTV.Core.Domain.Filler;
|
|
|
|
public enum FillerMode
|
|
{
|
|
None = 0,
|
|
Duration = 1,
|
|
Count = 2,
|
|
Pad = 3,
|
|
RandomCount = 4
|
|
}
|