main
1using System.Collections.Generic;
2
3namespace solidware.financials.service.domain.property_bag
4{
5 public interface PropertyBag
6 {
7 Property property_named(string name);
8 IEnumerable<Property> all();
9 }
10}