12 lines
231 B
C#
12 lines
231 B
C#
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace UptimeSharp.Models
|
|
{
|
|
/// <summary>
|
|
/// Default Response
|
|
/// </summary>
|
|
[DataContract]
|
|
internal class DefaultResponse : ResponseBase {}
|
|
}
|