15 lines
263 B
C#
15 lines
263 B
C#
namespace Adaptation.FileHandlers.QS408M;
|
|
|
|
public class Site
|
|
{
|
|
|
|
public Site(string position, string thickness)
|
|
{
|
|
Position = position;
|
|
Thickness = thickness;
|
|
}
|
|
|
|
public string Position { get; }
|
|
public string Thickness { get; }
|
|
|
|
} |