2023-02-12 12:21:10 +03:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-02-12 16:08:29 +03:00
|
|
|
|
namespace AutomobilePlantDataModels
|
2023-02-12 12:21:10 +03:00
|
|
|
|
{
|
|
|
|
|
public interface IId
|
|
|
|
|
{
|
|
|
|
|
int Id { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|