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.

24 lines
633 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Txgy.Microseismic.BaseLib
{
public class WorkAreaModel
{
public string WorkAreaName { get; set; }
public int WorkAreaID { get; set; }
public string WorkAreaAdd { get; set; }
public double EMin { get; set; }
public double EMax { get; set; }
public double NMin { get; set; }
public double NMax { get; set; }
public double ZMin { get; set; }
public double ZMax { get; set; }
public double ZStep { get; set; }
}
}