Interim commit.

This commit is contained in:
Yuee Shiness 2023-04-05 18:35:40 +04:00
parent 5e275843c9
commit 7cff6fd966

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreDataModels
{
public interface IID
{
int ID { get; }
}
}