Files
MPF/MPF.Frontend/ProcessUserInfoDelegate.cs

13 lines
491 B
C#
Raw Permalink Normal View History

using SabreTools.RedumpLib.Data;
namespace MPF.Frontend
{
/// <summary>
/// Determines how user information is processed, if at all
/// </summary>
2026-02-07 15:11:46 -05:00
/// <param name="options">Options set that may impact processing</params>
/// <param name="info">Submission info that may be overwritten</param>
/// <returns>True for successful updating, false or null otherwise</returns>
2026-02-07 15:11:46 -05:00
public delegate bool? ProcessUserInfoDelegate(Options? options, ref SubmissionInfo? info);
2025-11-11 15:52:26 -05:00
}