ISEbd-21_Haliullov_K.A._Jur.../JurassicZoo/ZooDataModels/IId.cs

14 lines
209 B
C#
Raw Normal View History

2023-04-09 01:27:52 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZooDataModels
{
public interface IId
{
int Id { get; }
}
}