LSInputComponent.cs 240 B

12345678910
  1. using MongoDB.Bson.Serialization.Attributes;
  2. namespace ET
  3. {
  4. public class LSInputComponent: LSEntity, ILSUpdate, IAwake, ISerializeToEntity
  5. {
  6. [BsonIgnore]
  7. public LSInput LSInput { get; set; } = new LSInput();
  8. }
  9. }