using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Txgy.Microseismic.BaseLib { public class WorkArea { public int ID { get; set; } public string Name { get; set; } public string Address { get; set; } public double XMin { get; set; } public double XMax { get; set; } public double YMin { get; set; } public double YMax { get; set; } public double ZMin { get; set; } public double ZMax { get; set; } /// /// 事件结果 /// public List eventResults { get; set; } /// /// 震源性质 /// public List eventFocalMechanisms { get; set; } } }