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

14 lines
246 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>
int IdWell { get; set; }
2022-06-02 12:35:51 +05:00
}
}