12 lines
211 B
C#
12 lines
211 B
C#
using System;
|
|
|
|
namespace Squirrowse.Service
|
|
{
|
|
public class UserProvider : IUserProvider
|
|
{
|
|
public string GetUserId()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |