using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace StructureHelperCommon.Models.Forces
{
///
/// Implement properties for concentrated load in beam
///
public interface IConcentratedForce : IBeamSpanLoad
{
///
/// Coordinate of location of force along beam, m
///
double ForceCoordinate { get; set; }
///
/// Value of force, N
///
double ForceValue { get; set; }
}
}