mirror of
https://github.com/bitwarden/server
synced 2025-12-13 23:03:36 +00:00
16 lines
394 B
C#
16 lines
394 B
C#
namespace Bit.Function.Models
|
|
{
|
|
public class AccessRuleResultResponse
|
|
{
|
|
public string Id { get; set; }
|
|
public string Notes { get; set; }
|
|
public ConfigurationResponse Configuration { get; set; }
|
|
|
|
public class ConfigurationResponse
|
|
{
|
|
public string Target { get; set; }
|
|
public string Value { get; set; }
|
|
}
|
|
}
|
|
}
|