using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
//Copyright (c) 2025 Redikultsev Evgeny, Ekaterinburg, Russia
//All rights reserved.
namespace StructureHelperCommon.Models.Forces
{
///
/// Implements properties of force at the and of bar
///
public interface IBeamShearAction : IAction
{
///
/// External force at the end of bar
///
IFactoredForceTuple ExternalForce { get; set; }
///
/// Internal loads on bar
///
IBeamShearAxisAction SupportAction { get; set; }
}
}