20 lines
No EOL
700 B
C#
20 lines
No EOL
700 B
C#
using System;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using Plugin.MongoLogs.Utils;
|
|
using Plugin.PlayerLogs.Messages.Family;
|
|
|
|
namespace Plugin.MongoLogs.Entities.Family
|
|
{
|
|
[EntityFor(typeof(LogFamilyKickedMessage))]
|
|
[CollectionName(CollectionNames.FAMILY_MANAGEMENT_KICKED, DisplayCollectionNames.FAMILY_MANAGEMENT_KICKED)]
|
|
internal class FamilyKickedLogEntity : IPlayerLogEntity
|
|
{
|
|
public long FamilyId { get; set; }
|
|
public long KickedMemberId { get; set; }
|
|
public long CharacterId { get; set; }
|
|
public string IpAddress { get; set; }
|
|
|
|
[BsonDateTimeOptions(Kind = DateTimeKind.Utc)]
|
|
public DateTime CreatedAt { get; set; }
|
|
}
|
|
} |