You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
314 B

  1. namespace Swift.DAL.Common
  2. {
  3. public class Fieldsetting
  4. {
  5. public string field { get; set; }
  6. public string fieldRequired { get; set; }
  7. public string minFieldlength { get; set; }
  8. public string maxFieldlength { get; set; }
  9. public string KeyWord { get; set; }
  10. }
  11. }