mirror of
https://github.com/bitwarden/server.git
synced 2026-02-12 11:53:23 +08:00
13 lines
216 B
C#
13 lines
216 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Bit.Core
|
|
{
|
|
public interface IDataObject
|
|
{
|
|
[JsonProperty("id")]
|
|
string Id { get; set; }
|
|
[JsonProperty("type")]
|
|
string Type { get; }
|
|
}
|
|
}
|