BotSharp/src/Infrastructure/BotSharp.Abstraction/Statistics/Model/Statistics.cs

14 lines
320 B
C#
Raw Normal View History

2024-01-29 04:18:40 +00:00
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; }
}
}