17 lines
308 B
C#
17 lines
308 B
C#
using System.Runtime.Serialization;
|
|
using Fantasy;
|
|
using LightProto;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
namespace Fantasy;
|
|
|
|
public partial class ChatInfoTree
|
|
{
|
|
[BsonIgnore]
|
|
[JsonIgnore]
|
|
[ProtoIgnore]
|
|
[IgnoreDataMember]
|
|
public Scene Scene { get; set; }
|
|
} |