COP-17/WinFormsProject/DataModels/IId.cs

14 lines
206 B
C#
Raw Permalink Normal View History

2023-11-15 22:51:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels
{
public interface IId
{
int Id { get; }
}
}