Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 : using System.Runtime.Serialization;
11 : using Cqrs.Entities;
12 :
13 : namespace Cqrs.Azure.BlobStorage.Test.Integration
14 : {
15 : /// <summary>
16 : /// A Test <see cref="IEntity"/>.
17 : /// </summary>
18 : [Serializable]
19 : [DataContract]
20 : public class TestEntity : Entity
21 1 : {
22 : /// <summary>
23 : /// A Name property.
24 : /// </summary>
25 : [DataMember]
26 : public string Name { get; set; }
27 : }
28 : }
|