8 lines
102 B
C#
Raw Normal View History

2024-03-13 14:54:56 +04:00
namespace ConfectioneryDataModels
{
public interface IId
{
int Id { get; }
}
}