11 lines
No EOL
287 B
C#
11 lines
No EOL
287 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Mails.Events;
|
|
|
|
public class NoteSentEvent : PlayerEvent
|
|
{
|
|
public long NoteId { get; init; }
|
|
public string ReceiverName { get; init; }
|
|
public string Title { get; set; }
|
|
public string Message { get; init; }
|
|
} |