mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-02-27 16:50:33 +08:00
16 lines
297 B
C#
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; }
|
|
}
|
|
}
|
|
|
|
|