// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) by respective owners including Yahoo!, Microsoft, and
// individual contributors. All rights reserved. Released under a BSD
// license as described in the file LICENSE.
//
// --------------------------------------------------------------------------------------------------------------------
using System.Collections.Generic;
namespace VW.Serializer
{
///
/// Describes the serializatoin for a give type.
///
public sealed class Schema
{
///
/// List of features to extract from type.
///
public List Features { get; set; }
///
/// Expression to access the label.
///
public LabelExpression Label { get; set; }
}
}