2024-02-08 13:59:58 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FlowerShopDataModels
|
|
|
|
|
{
|
2024-02-08 16:12:43 +04:00
|
|
|
|
public interface IId
|
2024-02-08 13:59:58 +04:00
|
|
|
|
{
|
2024-02-08 16:12:43 +04:00
|
|
|
|
int Id { get; }
|
2024-02-08 13:59:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|