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

11 lines
221 B
C#
Raw Normal View History

2017-09-08 18:38:09 +02:00
using System.Collections.Generic;
namespace Bit.Function.Models
{
public class ListResult
{
public bool Success { get; set; }
public List<AccessRuleResultResponse> Result { get; set; }
}
}