LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using System; 2 : using System.Runtime.Serialization; 3 : 4 : namespace Cqrs.Services 5 : { 6 : [Serializable] 7 : [DataContract] 8 : public class ServiceResponse : IServiceResponse 9 0 : { 10 0 : public ServiceResponse() 11 : { 12 : State = ServiceResponseStateType.Succeeded; 13 : } 14 : 15 : [DataMember] 16 : public ServiceResponseStateType State { get; set; } 17 : 18 : [DataMember] 19 : public Guid CorrelationId { get; set; } 20 : } 21 : } |
Generated by: LCOV version 1.10 |