12 lines
210 B
C#
12 lines
210 B
C#
namespace DataConnection.Enums;
|
|
|
|
/// <summary>
|
|
/// Strategia di mappatura dei nomi delle tabelle e colonne
|
|
/// </summary>
|
|
public enum NamingStrategy
|
|
{
|
|
Default,
|
|
CamelCase,
|
|
PascalCase,
|
|
SnakeCase
|
|
} |