Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. public with sharing class DataTableColumns {
  2. @AuraEnabled
  3. public String label {get;set;}
  4. @AuraEnabled
  5. public String fieldName {get;set;}
  6. @AuraEnabled
  7. public String type {get;set;}
  8.  
  9. public DataTableColumns(String label, String fieldName, String type){
  10. this.label = label;
  11. this.fieldName = fieldName;
  12. this.type = type;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement