BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Models/BreakpointMongoElement.cs
2024-04-07 22:15:51 -05:00

10 lines
262 B
C#

namespace BotSharp.Plugin.MongoStorage.Models;
public class BreakpointMongoElement
{
public string? MessageId { get; set; }
public DateTime Breakpoint { get; set; }
public DateTime CreatedTime { get; set; }
public string? Reason { get; set; }
}