17 lines
495 B
C#
17 lines
495 B
C#
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<int> FolderIds { get; set; }
|
|
}
|
|
} |