32 lines
597 B
C#
32 lines
597 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace TheArtOfDev.HtmlRenderer.Adapters.Entities
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public struct RFooter
|
|||
|
|
{
|
|||
|
|
private double _Height;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
public double Height
|
|||
|
|
{
|
|||
|
|
get { return _Height; }
|
|||
|
|
}
|
|||
|
|
/// <summary>
|
|||
|
|
///
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="height"></param>
|
|||
|
|
public RFooter(double height=0)
|
|||
|
|
{
|
|||
|
|
_Height = height;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|