DD.WellWorkover.Cloud/AsbCloudApp/Data/IWellRelated.cs
2024-08-19 10:01:07 +05:00

13 lines
201 B
C#

namespace AsbCloudApp.Data;
/// <summary>
/// Well related DTO
/// </summary>
public interface IWellRelated
{
/// <summary>
/// Well id in db
/// </summary>
int IdWell { get; set; }
}