14 lines
214 B
C#
Raw Normal View History

2023-02-12 19:11:02 +03:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-02-16 07:52:03 +03:00
namespace PizzeriaDataModels
2023-02-12 19:11:02 +03:00
{
public interface IId
{
int Id { get; }
}
}