PIbd-21_Shanygin_A.V_Garmen.../GarmentFactory/GarmentFactoryDataModels/IId.cs

14 lines
220 B
C#
Raw Normal View History

2024-03-11 00:46:45 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GarmentFactoryDataModels
{
public interface IId
{
int Id { get; }
}
}