2DLightPathSimulator/LensSimulatorCore/Workspace/LightSource.cs

11 lines
208 B
C#

namespace LensSimulatorCore.Workspace;
public class LightSource
{
public LightSource(LightPathSection section)
{
Section = section;
}
private LightPathSection Section { get; set; }
}