2020-12-11 16:17:44 +01:00

10 lines
126 B
C#

using System;
namespace HN.Application
{
public interface IUser
{
Guid Id { get; }
string UserName { get; }
}
}