using System;
using System.Runtime.InteropServices;
namespace System.ComponentModel
{
/// Specifies the visibility a property has to the design-time serializer.
// Token: 0x02000074 RID: 116
[ComVisible(true)]
public enum DesignerSerializationVisibility
{
/// The code generator does not produce code for the object.
// Token: 0x0400015E RID: 350
Hidden,
/// The code generator produces code for the object.
// Token: 0x0400015F RID: 351
Visible,
/// The code generator produces code for the contents of the object, rather than for the object itself.
// Token: 0x04000160 RID: 352
Content
}
}