SUBD/PersonnelDepartment/PersonnelDepartmentDataModels/IId.cs

14 lines
210 B
C#
Raw Normal View History

2024-05-20 01:09:44 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PersonnelDepartmentDataModels
{
public interface IId
{
int Id { get; }
}
}