diff --git a/src/EntityFrameworkCore.Generator.Core/Options/EntityClassOptions.cs b/src/EntityFrameworkCore.Generator.Core/Options/EntityClassOptions.cs index 3878ce7a..bcd70548 100644 --- a/src/EntityFrameworkCore.Generator.Core/Options/EntityClassOptions.cs +++ b/src/EntityFrameworkCore.Generator.Core/Options/EntityClassOptions.cs @@ -24,30 +24,6 @@ public EntityClassOptions(VariableDictionary variables, string prefix) Renaming = new SelectionOptions(variables, AppendPrefix(prefix, "Naming")); } - /// - /// Gets or sets the entity class name template. - /// - /// - /// The entity class name template. - /// - public string Name - { - get => GetProperty(); - set => SetProperty(value); - } - - /// - /// Gets or sets the base class to inherit from. - /// - /// - /// The base class. - /// - public string BaseClass - { - get => GetProperty(); - set => SetProperty(value); - } - /// /// Gets or sets the entity class naming strategy. /// diff --git a/src/EntityFrameworkCore.Generator.Core/Serialization/EntityClass.cs b/src/EntityFrameworkCore.Generator.Core/Serialization/EntityClass.cs index 44df5285..1ca37afb 100644 --- a/src/EntityFrameworkCore.Generator.Core/Serialization/EntityClass.cs +++ b/src/EntityFrameworkCore.Generator.Core/Serialization/EntityClass.cs @@ -23,22 +23,6 @@ public EntityClass() PrefixWithSchemaName = false; } - /// - /// Gets or sets the entity class name template. - /// - /// - /// The entity class name template. - /// - public string Name { get; set; } - - /// - /// Gets or sets the base class to inherit from. - /// - /// - /// The base class. - /// - public string BaseClass { get; set; } - /// /// Gets or sets the entity class naming strategy. ///