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