10 lines
219 B
C#
10 lines
219 B
C#
|
using System;
|
|||
|
|
|||
|
namespace LeanCloud.Storage.Internal.Storage {
|
|||
|
public class StandardStorage : IStorage {
|
|||
|
public string GetStoragePath() {
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|