using Knoks.Core.Entities.Interfaces; using System.Collections.Generic; namespace Knoks.Core.Entities { public class UserAccounts : IApiResult { public User User { get; set; } public IEnumerable Accounts { get; set; } } }