forked from ddrilling/AsbCloudServer
9 lines
283 B
C#
9 lines
283 B
C#
|
using AsbCloudApp.IntegrationEvents.Interfaces;
|
||
|
|
||
|
namespace AsbCloudApp.IntegrationEvents;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Обновление показателей бурения
|
||
|
/// </summary>
|
||
|
/// <param name="IdWell"></param>
|
||
|
public record UpdateWellInfoEvent(int IdWell) : IIntegrationEvent;
|