IDescriptiveRecord

A record that implements this interface has a description set.

Example

using EditorStatistics;

public class MyRecord : IRecord, IDescriptiveRecord
{
    public string Description => "My Description";
}

Last updated