27 lines
586 B
C#
27 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Big.Lito.Data.DataModel
|
|
{
|
|
public class ProcessLevelsModel
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets project name
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets progress max value
|
|
/// </summary>
|
|
public int Start { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets progress min value
|
|
/// </summary>
|
|
public int End { get; set; }
|
|
}
|
|
}
|