Coursework_ComputerStore_Li.../ComputerStoreDataModels/IID.cs
2023-04-05 18:35:40 +04:00

14 lines
219 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreDataModels
{
public interface IID
{
int ID { get; }
}
}