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 Groups { get; set; } = new List(); public List Users { get; set; } = new List(); } }