using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Taloyhtio.IDP.SPApi.Model { public class ResolveFolderPathRequest { [Required] public Guid TaloyhtioPMCId { get; set; } [Required] public Guid TaloyhtioCondoId { get; set; } public string RootFlatFolderTitle { get; set; } public ListType ListType { get; set; } public IEnumerable FolderIds { get; set; } } }