BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/RoutingProfileCollection.cs

8 lines
189 B
C#
Raw Normal View History

2023-09-02 22:41:58 +00:00
namespace BotSharp.Plugin.MongoStorage.Collections;
public class RoutingProfileCollection : MongoBase
{
public string Name { get; set; }
public List<Guid> AgentIds { get; set; }
}