10 lines
123 B
C#
10 lines
123 B
C#
using System;
|
|
|
|
namespace Application
|
|
{
|
|
public interface IUser
|
|
{
|
|
Guid Id { get; }
|
|
string UserName { get; }
|
|
}
|
|
} |