| 1234567891011121314151617181920212223242526 |
- using MongoDB.Bson.Serialization.Attributes;
- namespace Common.Base
- {
- public class Component: Object
- {
- private Entity owner;
- [BsonIgnore]
- public Entity Owner {
- get
- {
- return owner;
- }
- set
- {
- this.owner = value;
- this.Guid = this.owner.Guid;
- }
- }
- protected Component()
- {
- }
- }
- }
|