From d07fc4b1e1ad1dff1699fcec606d5e01df328053 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Thu, 10 Jul 2025 15:14:03 +0700 Subject: [PATCH] Fix bot dto --- .../MongoDb/Collections/BotDto.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Managing.Infrastructure.Database/MongoDb/Collections/BotDto.cs b/src/Managing.Infrastructure.Database/MongoDb/Collections/BotDto.cs index f92328c..76885bb 100644 --- a/src/Managing.Infrastructure.Database/MongoDb/Collections/BotDto.cs +++ b/src/Managing.Infrastructure.Database/MongoDb/Collections/BotDto.cs @@ -7,9 +7,7 @@ namespace Managing.Infrastructure.Databases.MongoDb.Collections; [BsonCollection("Bots")] public class BotDto : Document { - public string Name { get; set; } public string Data { get; set; } - public BotType BotType { get; set; } public string Identifier { get; set; } public UserDto User { get; set; } public BotStatus LastStatus { get; set; }