using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
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.
// Token: 0x020000D0 RID: 208
[Token(Token = "0x20000D0")]
[ComVisible(true)]
[Serializable]
public enum DateTimeKind
{
/// The time represented is not specified as either local time or Coordinated Universal Time (UTC).
// Token: 0x0400030F RID: 783
[Token(Token = "0x400030F")]
Unspecified,
/// The time represented is UTC.
// Token: 0x04000310 RID: 784
[Token(Token = "0x4000310")]
Utc,
/// The time represented is local time.
// Token: 0x04000311 RID: 785
[Token(Token = "0x4000311")]
Local
}
}