DocSpace-client/web/ASC.Web.Api/Models/StorageModel.cs

12 lines
275 B
C#
Raw Normal View History

2019-08-12 10:53:12 +00:00
using System.Collections.Generic;
using ASC.Api.Collections;
namespace ASC.Web.Api.Models
{
public class StorageModel
{
public string Module { get; set; }
public IEnumerable<ItemKeyValuePair<string, string>> Props { get; set; }
}
}