17 lines
307 B
C#
Raw Normal View History

2024-05-10 23:48:48 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using LawFirmDataModels;
2024-04-13 01:58:54 +04:00
namespace LawFirmDataModels.Models
{
public interface IComponentModel : IId
{
string ComponentName { get; }
double Cost { get; }
2024-05-10 23:48:48 +04:00
2024-04-13 01:58:54 +04:00
}
2024-05-10 23:48:48 +04:00
}