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

15 lines
275 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DinerDataModels.Models
{
public interface IFoodModel : IID
{
string ComponentName { get; }
double Price { get; }
}
}