Store leftover CSV columns on hidden student notes, move catalog import to /events/import, and persist Students index columns from Chapter Settings. Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
332 B
C#
15 lines
332 B
C#
namespace Core.Notes;
|
|
|
|
/// <summary>
|
|
/// Default imported-field names used for Students index columns and the CSV template.
|
|
/// </summary>
|
|
public static class StudentNoteFieldDefaults
|
|
{
|
|
public static readonly string[] IndexColumns =
|
|
[
|
|
"Interview Time",
|
|
"Application",
|
|
"Club Permission Slip"
|
|
];
|
|
}
|