Files
SqlSugar/Src/Asp.NetCore2/MongoDb.Ado.data/Common/MongoParsedCommand.cs
2025-07-02 10:13:11 +08:00

16 lines
297 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace MongoDb.Ado.Data.Common
{
public class MongoParsedCommand
{
public string CollectionName { get; set; }
public string Operation { get; set; }
public string Json { get; set; }
}
}