namespace StructureHelperCommon.Models.Forces { /// /// Implement properties of /// public interface IDistributedLoad : IBeamShearLoad { /// /// Value of uniformly distributed load, N/m /// double LoadValue { get; set; } /// /// Coordinate of start of load, m /// double StartCoordinate { get; set; } /// /// Coordinate of end of load, m /// double EndCoordinate { get; set; } } }