23 lines
399 B
C#
23 lines
399 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Runtime.Serialization;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace BS.Shared.DataContracts
|
|||
|
|
{
|
|||
|
|
[DataContract]
|
|||
|
|
public class ServiceStatusDC
|
|||
|
|
{
|
|||
|
|
[DataMember]
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public bool IsOk { get; set; }
|
|||
|
|
|
|||
|
|
[DataMember]
|
|||
|
|
public string Message { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|