PIbd-22_Razzhivin_A.S._Gift.../GiftShop/GiftShopDataModels/IId.cs
2023-04-30 02:34:19 +04:00

14 lines
214 B
C#

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