13 lines
209 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels
{
2024-05-29 20:57:54 +04:00
public interface IId
{
int Id { get; }
}
}