Having the contract: ```cs [MessagePackObject] public class Foo { [Key(0)] public ICollection<Bar> Bars {get; set;} } ``` we unable to deserialize it properly and make use obj.Bars.Add(item). Seems like there should be List<T> instead, isn't it ?
Having the contract:
we unable to deserialize it properly and make use obj.Bars.Add(item). Seems like there should be List instead, isn't it ?