mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
14 lines
298 B
C#
14 lines
298 B
C#
using System.Runtime.Serialization;
|
|
using Newtonsoft.Json;
|
|
using Streetwriters.Common.Interfaces;
|
|
|
|
namespace Streetwriters.Common.Models
|
|
{
|
|
public class Response : IResponse
|
|
{
|
|
[JsonIgnore]
|
|
public bool Success { get; set; }
|
|
public int StatusCode { get; set; }
|
|
}
|
|
}
|