mirror of
https://github.com/bitwarden/server.git
synced 2024-11-23 12:25:16 +01: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; }
|
|
}
|
|
}
|