8 lines
160 B
C#
8 lines
160 B
C#
namespace LawFirmDataModels.Models
|
|
{
|
|
public interface IComponentModel : IId
|
|
{
|
|
string ComponentName { get; }
|
|
double Cost { get; }
|
|
}
|
|
} |