1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-05 03:32:21 -05:00
2017-03-08 21:55:08 -05:00

20 lines
381 B
C#

using System;
namespace Bit.Core.Models.Api
{
public abstract class ResponseModel
{
public ResponseModel(string obj)
{
if(string.IsNullOrWhiteSpace(obj))
{
throw new ArgumentNullException(nameof(obj));
}
Object = obj;
}
public string Object { get; private set; }
}
}