This commit is contained in:
Salikh 2024-04-21 19:07:31 +04:00
parent b218100722
commit c84db31fdf

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelDataModels
{
public interface IId
{
int Id { get; }
}
}