Files
schengen-visa/Domains/IEntity.cs
2025-10-05 14:32:06 +03:00

7 lines
131 B
C#

namespace Domains;
/// Interface that every entity should inherit from
public interface IEntity
{
public Guid Id { get; }
}