Илья Федотов 520b361e50 Base.01
2024-02-24 21:32:11 +04:00

14 lines
211 B
C#

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