PIbd-22_Isaeva_A.I._FishFac.../FishFactoryDataModels/IId.cs

14 lines
216 B
C#
Raw Normal View History

2024-02-05 19:09:54 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FishFactoryDataModel
{
public interface IId
{
int Id { get; }
}
}