DocSpace-client/products/ASC.Files/Tests/Infrastructure/FilesTestsOptions.cs

14 lines
270 B
C#
Raw Normal View History

using System;
namespace ASC.Files.Tests.Infrastructure
{
public class UserOptions
{
public const string User = "User";
2020-11-12 03:55:14 +00:00
public Guid ParentId { get; set; }
public Guid Id { get; set; }
public int TenantId { get; set; }
2020-10-27 08:04:55 +00:00
}
}