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