DD.WellWorkover.Cloud/AsbCloudDb/Model/IId.cs

12 lines
170 B
C#
Raw Normal View History

2021-04-07 18:01:56 +05:00
using System;
using System.Collections.Generic;
using System.Text;
namespace AsbCloudDb.Model
{
public interface IId
{
public int Id { get; }
}
}