13 lines
190 B
C#
13 lines
190 B
C#
|
|
using System.Runtime.Serialization;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Cms.Core.Models
|
|||
|
|
{
|
|||
|
|
[DataContract]
|
|||
|
|
public enum TelemetryLevel
|
|||
|
|
{
|
|||
|
|
Minimal,
|
|||
|
|
Basic,
|
|||
|
|
Detailed,
|
|||
|
|
}
|
|||
|
|
}
|