diff --git a/src/ReC.Domain/Constants/ProfileType.cs b/src/ReC.Domain/Constants/ProfileType.cs new file mode 100644 index 0000000..e2ea063 --- /dev/null +++ b/src/ReC.Domain/Constants/ProfileType.cs @@ -0,0 +1,12 @@ +namespace ReC.Domain.Constants; + +public enum ProfileType : byte +{ + Http = 1, + Https = 2 +} + +public static class ProfileTypeExtensions +{ + public static string ToUriBuilderScheme(this ProfileType profileType) => profileType.ToString().ToLower(); +} \ No newline at end of file