forked from ddrilling/AsbCloudServer
9 lines
282 B
C#
9 lines
282 B
C#
using AsbCloudApp.IntegrationEvents.Interfaces;
|
||
|
||
namespace AsbCloudApp.IntegrationEvents;
|
||
|
||
/// <summary>
|
||
/// Обновление информации о скважине
|
||
/// </summary>
|
||
/// <param name="IdWell"></param>
|
||
public record UpdateWellEvent(int IdWell) : IIntegrationEvent; |