blob: 6832babe7a092da5cb9839719332e35ed16132f1 [file] [log] [blame]
// Copyright (c) 2006- Facebook
// Distributed under the Thrift Software License
//
// See accompanying file LICENSE or visit the Thrift site at:
// http://developers.facebook.com/thrift/
package com.facebook.thrift.protocol;
/**
* Helper class that encapsulates struct metadata.
*
* @author Mark Slee <mcslee@facebook.com>
*/
public class TStruct {
public TStruct() {}
public TStruct(String n) {
name = n;
}
public String name = "";
}