mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
14 lines
266 B
C#
14 lines
266 B
C#
using System;
|
|
|
|
namespace GitHub.Runner.Common
|
|
{
|
|
public class AuthMigrationEventArgs : EventArgs
|
|
{
|
|
public AuthMigrationEventArgs(string trace)
|
|
{
|
|
Trace = trace;
|
|
}
|
|
public string Trace { get; private set; }
|
|
}
|
|
}
|