//
//  Constants.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace NosSmooth.PacketSerializersGenerator;
/// 
/// Contains constants needed for the generation.
/// 
public class Constants
{
    /// 
    /// Gets the full name of the generate source attribute class.
    /// 
    public static string GenerateSourceAttributeClass => "NosSmooth.PacketSerializer.Abstractions.Attributes.GenerateSerializerAttribute";
    /// 
    /// Gets the full name of the packet attribute classes that are used for the generation.
    /// 
    public static string PacketAttributesClassRegex => @"^NosSmooth\.PacketSerializer\.Abstractions\.Attributes\.Packet.*";
    /// 
    /// Gets the full name of helper class used for inline type converters.
    /// 
    public static string HelperClass => "NosSmooth.Generated.HelperClass";
}