PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryDataModels/Iid.cs

14 lines
219 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryDataModels
{
2024-03-12 21:04:18 +04:00
public interface IId
{
int Id { get; }
}
}