2023-03-31 20:21:07 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankYouBankruptDataModels
|
|
|
|
|
{
|
|
|
|
|
public interface IId
|
|
|
|
|
{
|
2023-04-01 11:57:44 +04:00
|
|
|
|
int Id { get; }
|
2023-03-31 20:21:07 +04:00
|
|
|
|
}
|
|
|
|
|
}
|