| 1234567891011121314151617181920212223242526 |
- using MongoDB.Bson.Serialization.Attributes;
- namespace Common.Base
- {
- /// <summary>
- /// Component的Id与Owner Entity Id一样
- /// </summary>
- public abstract class Component : Object
- {
- private Entity owner;
- [BsonIgnore]
- public Entity Owner
- {
- get
- {
- return owner;
- }
- set
- {
- this.owner = value;
- this.Id = this.owner.Id;
- }
- }
- }
- }
|