BotSharp/src/Infrastructure/BotSharp.Abstraction/Statistics/Model/Statistics.cs
2024-01-28 22:18:40 -06:00

14 lines
320 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Abstraction.Statistics.Model
{
public class Statistics
{
public string Id { get; set; } = string.Empty;
public int ConversationCount { get; set; }
public DateTime UpdatedDateTime { get; set; }
}
}