ISEbd-21_Gruzdev_A.P._Compu.../ComputersShop/ComputersShopDataModels/IId.cs
2024-04-12 18:53:03 +04:00

14 lines
219 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputersShopDataModels
{
public interface IId
{
int Id { get; }
}
}