BotSharp/src/Plugins/BotSharp.Plugin.MongoStorage/Collections/RoutingProfileCollection.cs
2023-09-02 17:41:58 -05:00

8 lines
189 B
C#

namespace BotSharp.Plugin.MongoStorage.Collections;
public class RoutingProfileCollection : MongoBase
{
public string Name { get; set; }
public List<Guid> AgentIds { get; set; }
}