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

9 lines
222 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; }
}