You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
471 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EWS.ComputerMonitor.Model
{
public class SeriesModel
{
public int SeriesId { get; set; }
public string SeriesName { get; set; }
public int CourseId { get; set; }
public decimal CurrentValue { get; set; }
public bool IsGrowing { get; set; }
public int GrowingRate { get; set; }
}
}