PIbd-22_Chubykina_P.P._Conf.../Confectionery/ConfectionaryDataModels/Models/IComponentModel.cs

15 lines
287 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConfectioneryDataModels.Models
{
2024-03-12 21:04:18 +04:00
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
}
}