CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/IId.cs

14 lines
206 B
C#
Raw Normal View History

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
}
}