13 lines
225 B
C#
Raw Permalink Normal View History

2024-02-08 00:52:37 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PrecastConcretePlantDataModels
{
2024-02-08 20:30:24 +04:00
public interface IId
2024-02-08 00:52:37 +04:00
{
2024-02-08 20:30:24 +04:00
int Id { get; }
2024-02-08 00:52:37 +04:00
}
2024-02-08 20:30:24 +04:00
}