11 lines
182 B
C#
11 lines
182 B
C#
using System;
|
|
|
|
namespace Discord
|
|
{
|
|
public class ProfileUpdatedEventArgs : EventArgs
|
|
{
|
|
public Profile Before => null;
|
|
public Profile After => null;
|
|
}
|
|
}
|