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.

30 lines
841 B
C#

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; }
/// <summary>
/// 事件结果
/// </summary>
public List<EventResult> eventResults { get; set; }
/// <summary>
/// 震源性质
/// </summary>
public List<EventFocalMechanism> eventFocalMechanisms { get; set; }
}
}