IValueRecord

A record that implements this interface has a value.

Example

using EditorStatistics;

public class MyRecord : IRecord, IValueRecord
{
    public string GetValue()
    {
        return "My Value";
    }
}

Last updated