ICategorizedRecord

A record that implements this interface is grouped into a category.

Example

using EditorStatistics;

public class MyRecord : IRecord, ICategorizedRecord
{
    public string Category => "My Category";
}

Last updated