mirror of
https://github.com/bitwarden/server
synced 2026-02-04 10:43:53 +00:00
11 lines
221 B
C#
11 lines
221 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Bit.Function.Models
|
|
{
|
|
public class ListResult
|
|
{
|
|
public bool Success { get; set; }
|
|
public List<AccessRuleResultResponse> Result { get; set; }
|
|
}
|
|
}
|