关于如何用 .net 对象表示以下内容的任何想法?
{
_id: ’T4Y...AC’, // base64-encoded ObjectId
name: ’Rick’,
profile: { ... age, location, interests, etc. ... },
followers: {
"T4Y...AD": { name: ’Jared’, circles: [ ’python’, ’authors’] },
"T4Y...AF": { name: ’Bernie’, circles: [ ’python’ ] },
"T4Y...AI": { name: ’Meghan’, circles: [ ’python’, ’speakers’ ] }
}
}