using FluentValidation;
namespace zero.Configuration;
public abstract class OptionsType
{
///
/// Type of the associated model class
///
public Type ContentType { get; set; }
///
/// The alias
///
public string Alias { get; set; }
///
/// The name of the options type
///
public string Name { get; set; }
///
/// Set a validator for the editor
///
public IValidator Validator { get; set; }
}