16 lines
349 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DressAtelierDataModels.Models
{
public interface IDressModel : IID
{
2023-02-13 02:45:41 +04:00
string DressName { get; }
double Price { get; }
2023-02-13 02:45:41 +04:00
Dictionary<int,(IMaterialModel,int)> DressComponents { get; }
}
}