AK.F1.Timing.Model.Collections.PostedTimeCollectionModel.PostedTimeCollectionModel C# (CSharp) Method

PostedTimeCollectionModel() public method

Initialises a new instance of the PostedTimeCollectionModel class.
public PostedTimeCollectionModel ( ) : System
return System
        public PostedTimeCollectionModel()
        {
            InnerItems = new ObservableCollection<PostedTime>();
            Items = new ReadOnlyObservableCollection<PostedTime>(InnerItems);
        }