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.
25 lines
537 B
C#
25 lines
537 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Drawing;
|
|
using Txgy.Microseismic.BaseLib.Models;
|
|
|
|
namespace Txgy.EWS.Client.FocalMechanism.Model
|
|
{
|
|
public class ComputationResult
|
|
{
|
|
public Graph graph { get; set; }
|
|
|
|
public FocalMechanismType FocalType { get; set; }
|
|
|
|
public double Direction { get; set; }
|
|
|
|
public ComputationResult()
|
|
{
|
|
FocalType = FocalMechanismType.unknown;
|
|
}
|
|
}
|
|
}
|