main
1using System;
2
3namespace solidware.financials.service.domain.property_bag
4{
5 public class UnknownProperty : Property
6 {
7 public bool represents(string name)
8 {
9 throw new NotImplementedException();
10 }
11 }
12}