11 lines
208 B
C#
11 lines
208 B
C#
|
namespace LensSimulatorCore.Workspace;
|
||
|
|
||
|
public class LightSource
|
||
|
{
|
||
|
public LightSource(LightPathSection section)
|
||
|
{
|
||
|
Section = section;
|
||
|
}
|
||
|
|
||
|
private LightPathSection Section { get; set; }
|
||
|
}
|