ISEbd-21_Zinovev_V.V._Furni.../FurnitureAssembly/FurnitureAssemblyDataModels/Models/IWorkpieceModel.cs
2024-03-20 19:37:08 +04:00

16 lines
292 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureAssemblyDataModels.Models
{
public interface IWorkpieceModel : IId
{
string WorkpieceName { get; }
double Cost { get; }
}
}