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
551 B
C#

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;
}
}
}