1
0
mirror of https://github.com/bitwarden/server.git synced 2024-11-23 12:25:16 +01:00
bitwarden-server/util/Function/Models/ListResult.cs
2017-09-08 12:38:09 -04:00

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; }
}
}