Files
w4rpservices/vendor/snowplow/referer-parser/dotnet/RefererParser/RefererMedium.cs
2019-12-26 05:03:41 +00:00

21 lines
366 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace RefererParser
{
/// <summary>
/// Referer medium
/// </summary>
public enum RefererMedium
{
// Order is important, most important medium's first
Search = 0,
Social,
Email,
Unknown,
Internal
}
}