using System;
using System.Runtime.InteropServices;
namespace System
{
/// Specifies whether a object represents a local time, a Coordinated Universal Time (UTC), or is not specified as either local time or UTC.
/// 2
// Token: 0x02000655 RID: 1621
[ComVisible(true)]
[Serializable]
public enum DateTimeKind
{
/// The time represented is not specified as either local time or Coordinated Universal Time (UTC).
// Token: 0x040018B3 RID: 6323
Unspecified,
/// The time represented is UTC.
// Token: 0x040018B4 RID: 6324
Utc,
/// The time represented is local time.
// Token: 0x040018B5 RID: 6325
Local
}
}