mirror of
https://github.com/bitwarden/server
synced 2025-12-30 15:14:02 +00:00
Transition reference id to data (#828)
* Transition reference id to data * field length and request model updates
This commit is contained in:
16
src/Core/Models/Business/ReferenceEventData.cs
Normal file
16
src/Core/Models/Business/ReferenceEventData.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user