using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Big.Lito.Data.DataModel
{
public class ProgressModel
{
///
/// Gets or sets progress id
///
public int Id { get; set; }
///
/// Gets or sets project name
///
public string ProgressName { get; set; }
///
/// Gets or sets progress max value
///
public int MaxValue { get; set; }
///
/// Gets or sets progress min value
///
public int MinValue { get; set; }
///
/// Gets or sets progress current value
///
public int CurValue { get; set; }
///
/// Gets or sets progress current value - extention
///
public int CurValueExt { get; set; }
///
/// Gets or sets current project id
///
public int ProjectId { get; set; }
}
}