namespace api.Interfaces; /// /// Contains logic to build Qr Codes /// public interface IQrCodeGenerator { /// /// Generates a Qr Code with an embedded random Guid /// /// string GenerateQrCode(string ticketId); }