using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Txgy.EWS.Client.FocalMechanism.Model { public class FMStation { public int ID { get; set; } public string Name { get; set; } public double X { get; set; } public double Y { get; set; } public FMStation(int i,string name, double x, double y) { this.ID = i; this.Name = name; this.X = x; this.Y = y; } } }