2021-04-29 12:01:02 +02:00

10 lines
123 B
C#

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