namespace edu.neu.ccs.demeterf.http.server{
using System;

/** Used to annotate a field of the Server as representing
 *    the Port number that it will listen on (bound at
 *    Server creation time). 
 */

[AttributeUsage(AttributeTargets.Field)]
public class Port : System.Attribute{
    public Port(){}
}

}