public StrapiStringAttributeDescription(
     string defaultValue,
     StrapiStringType stringType,
     int?minLength,
     int?maxLength,
     bool?isPrivate,
     bool?isRequired,
     bool?isUnique
     ) : this(
         defaultValue,
         Enum.GetName(typeof(StrapiStringType), stringType) !.ToLower(),
예제 #2
0
 public StringTypeAttribute(StrapiStringType strapiStringType)
 {
     StrapiStringType = strapiStringType;
 }