sharp-wawi/Parts.cs

25 lines
377 B
C#

using System;
using appsrv.attributes;
using sharpwawi.models;
using System.Collections.Generic;
namespace sharpwawi
{
public class Parts
{
public WaWi WaWi { get; }
public Parts(WaWi waWi)
{
WaWi = waWi;
}
public Part this[string key]{
get => throw new KeyNotFoundException();
}
}
}