using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Inet.Viewer.Data
{
///
/// Describes the state and percentual progress of a report on the server.
///
public class ReportState
{
///
/// Create a state instance.
///
/// the state as localized text
/// the percentual total progress
public ReportState(string text, int progress)
{
Text = text;
Progress = progress;
}
///
/// Gets the state as text.
///
public string Text { get; private set; }
///
/// Gets the percentual total progress.
///
public int Progress { get; private set; }
}
}