Remove the ability the lookup username history for moderators

This commit is contained in:
runebaas 2020-06-20 03:23:27 +02:00
parent 56f788878a
commit 619f63067c
No known key found for this signature in database
GPG key ID: 2677AF508D0300D6
4 changed files with 3 additions and 44 deletions

View file

@ -24,7 +24,5 @@ namespace Geekbot.net.Database.Models
public bool IsBot { get; set; }
public DateTimeOffset Joined { get; set; }
public List<UserUsedNamesModel> UsedNames { get; set; }
}
}

View file

@ -1,15 +0,0 @@
using System;
using System.ComponentModel.DataAnnotations;
namespace Geekbot.net.Database.Models
{
public class UserUsedNamesModel
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public DateTimeOffset FirstSeen { get; set; }
}
}