Structures (records)

using System;

var width = BoldLine.LineWidth;
//width is 10

Console.WriteLine(width);

struct BoldLine {
    public const int LineWidth = 10;
}