using System.Collections.Generic; namespace UIWidgetsSample { public class DateHeader : Equatable { /// Text to show in a header public readonly string text; /// Creates a date header. public DateHeader(string text = null) { this.text = text; } /// Equatable props public override List props => new List {text}; } }