15 lines
275 B
C#
Raw Normal View History

2024-02-24 21:32:11 +04:00
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; }
}
}