mirror of
https://github.com/bitwarden/server
synced 2025-12-26 05:03:18 +00:00
17 lines
361 B
C#
17 lines
361 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Serialization;
|
|
|
|
namespace Bit.Core.Models.Business
|
|
{
|
|
[JsonObject(NamingStrategyType = typeof(CamelCaseNamingStrategy))]
|
|
public class ReferenceEventData
|
|
{
|
|
public string Id { get; set; }
|
|
|
|
public string Layout { get; set; }
|
|
|
|
public string Flow { get; set; }
|
|
}
|
|
}
|