BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Models/BreakpointMongoElement.cs

10 lines
262 B
C#
Raw Normal View History

2024-03-26 17:10:34 +00:00
namespace BotSharp.Plugin.MongoStorage.Models;
public class BreakpointMongoElement
{
public string? MessageId { get; set; }
public DateTime Breakpoint { get; set; }
public DateTime CreatedTime { get; set; }
2024-04-08 03:15:51 +00:00
public string? Reason { get; set; }
2024-03-26 17:10:34 +00:00
}