mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 14:43:10 +08: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; }
|
|
}
|
|
}
|