mirror of
https://github.com/bitwarden/server
synced 2025-12-06 00:03:34 +00:00
20 lines
376 B
C#
20 lines
376 B
C#
using System;
|
|
|
|
namespace Bit.Api.Models
|
|
{
|
|
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; }
|
|
}
|
|
}
|