mirror of
https://github.com/bitwarden/mobile
synced 2025-12-27 21:53:57 +00:00
10 lines
137 B
C#
10 lines
137 B
C#
using System.Net;
|
|
|
|
namespace Bit.App.Models.Api
|
|
{
|
|
public class ApiError
|
|
{
|
|
public string Message { get; set; }
|
|
}
|
|
}
|