33 lines
785 B
C#
33 lines
785 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using xFileService.Interfaces;
|
|
using xTagService.Interfaces;
|
|
|
|
namespace xFileService.Providers
|
|
{
|
|
public class XBaseFileProvider<TKey> : IXBaseFileProvider<TKey>
|
|
{
|
|
//
|
|
#region Props ...
|
|
/// <summary>
|
|
/// Specified Provider ...
|
|
/// </summary>
|
|
public string ProvideFor { get; }
|
|
|
|
/// <summary>
|
|
/// Specified Provider Repositroy ...
|
|
/// </summary>
|
|
public IXFileProvider Provider { get; }
|
|
|
|
/// <summary>
|
|
/// Tag Provider for Specified File ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public IXBaseTagProvider<TKey> TagProvider { get; }
|
|
#endregion
|
|
|
|
|
|
}
|
|
} |