Added a MILF counter to the bot

This commit is contained in:
barelyprofessional
2025-05-18 13:43:51 -05:00
parent 5f71fbcb79
commit cadabb6895
7 changed files with 503 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
namespace KfChatDotNetBot.Models.DbModels;
public class MomDbModel
{
public int Id { get; set; }
public required UserDbModel User { get; set; }
public DateTimeOffset Time { get; set; }
}