PIbd_23_Firsov_K._A._School/School/SchoolsDataModels/IId.cs
2024-04-30 12:53:31 +04:00

15 lines
213 B
C#

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