PIbd_23_Valova_A._D._SushiBar/SushiBar/SushiBarDataModels/Models/IComponentModel.cs
2024-02-12 15:00:02 +04:00

16 lines
299 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SushiBarDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}