forked from ddrilling/AsbCloudServer
14 lines
261 B
C#
14 lines
261 B
C#
namespace AsbCloudDb.Model
|
|
{
|
|
/// <summary>
|
|
/// For well related entities
|
|
/// </summary>
|
|
public interface IWellRelated
|
|
{
|
|
/// <summary>
|
|
/// Id скважины
|
|
/// </summary>
|
|
int IdWell { get; set; }
|
|
}
|
|
}
|