SUBD_SportCompetitions/SportCompetitionsDataModels/IId.cs

14 lines
208 B
C#
Raw Normal View History

2024-04-23 15:46:00 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SportCompetitionsDataModels
{
public interface IId
{
int Id { get; }
}
}