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

14 lines
243 B
C#
Raw Normal View History

namespace AsbCloudApp.Data
2022-06-02 12:35:51 +05:00
{
/// <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
}
}