// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Media
{
///
/// Defines the available font styles.
///
public enum FontStyle
{
///
/// A normal font.
///
Normal,
///
/// An oblique font.
///
Oblique,
///
/// An italic font.
///
Italic,
}
}