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

14 lines
253 B
C#
Raw Normal View History

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