DD.WellWorkover.Cloud/AsbCloudApp/Data/IWellRelated.cs

13 lines
201 B
C#
Raw Permalink Normal View History

2024-08-19 10:01:07 +05:00
namespace AsbCloudApp.Data;
/// <summary>
/// Well related DTO
/// </summary>
public interface IWellRelated
2022-06-02 12:35:51 +05:00
{
/// <summary>
2024-08-19 10:01:07 +05:00
/// Well id in db
2022-06-02 12:35:51 +05:00
/// </summary>
2024-08-19 10:01:07 +05:00
int IdWell { get; set; }
2022-06-02 12:35:51 +05:00
}