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