CourseWork_CompShop/ComputerShopProvider/ComputerShopDataModels/IId.cs
2023-04-05 18:31:49 +04:00

14 lines
218 B
C#

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