1 //
2 // System.IO.Ports.SerialData.cs
3 //
4 // Authors:
5 //	Carlos Alberto Cortez (calberto.cortez@gmail.com)
6 //
7 // (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
8 //
9 
10 namespace System.IO.Ports
11 {
12 	public enum SerialData
13 	{
14 		Chars = 1,
15 		Eof
16 	}
17 }
18 
19