12 lines
222 B
C#
12 lines
222 B
C#
using System;
|
|
|
|
namespace Discord
|
|
{
|
|
public class ChannelUpdatedEventArgs : EventArgs
|
|
{
|
|
public IChannel Before => null;
|
|
public IChannel After => null;
|
|
public Server Server => null;
|
|
}
|
|
}
|