mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
17 lines
436 B
C#
17 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bit.Core.Models
|
|
{
|
|
public class SyncResult
|
|
{
|
|
public bool Success { get; set; }
|
|
public string ErrorMessage { get; set; }
|
|
public List<GroupEntry> Groups { get; set; } = new List<GroupEntry>();
|
|
public List<UserEntry> Users { get; set; } = new List<UserEntry>();
|
|
}
|
|
}
|