14 lines
320 B
C#
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; }
|
|
}
|
|
}
|