namespace ErsatzTV.Core.Domain; // How a Channel row came to exist. This is immutable creation-provenance: it records how the channel // was born and a later user edit never changes it. Unknown is the honest default for rows that predate // this column — provenance was never recorded for them and is deliberately not back-filled (inferring it // from the "Channel Lineups" system playlist group is the mislabeling heuristic #414 rejected). public enum ChannelOrigin { Unknown = 0, UserCreated = 1, AutoTuned = 2 }