//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(1006, "bUserExtensionRepo")] public class bUserExtensionRepo { [DNAFieldAttribute(0, "bUserExtensionRepo", "*next", "bUserExtensionRepo", 4, true)] public bUserExtensionRepo ptr_next; [DNAFieldAttribute(1, "bUserExtensionRepo", "*prev", "bUserExtensionRepo", 4, true)] public bUserExtensionRepo ptr_prev; [DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false)] public char[] name = new System.Char[64]; [DNAFieldAttribute(3, "char", "module[48]", "System.Char[]", 48, false)] public char[] module = new System.Char[48]; [DNAFieldAttribute(4, "char", "*access_token", "char", 4, true)] public char ptr_access_token; [DNAFieldAttribute(5, "char", "custom_dirpath[1024]", "System.Char[]", 1024, false)] public char[] custom_dirpath = new System.Char[1024]; [DNAFieldAttribute(6, "char", "remote_url[1024]", "System.Char[]", 1024, false)] public char[] remote_url = new System.Char[1024]; [DNAFieldAttribute(7, "uchar", "flag", "uchar", 1, false)] public byte flag; [DNAFieldAttribute(8, "uchar", "source", "uchar", 1, false)] public byte source; [DNAFieldAttribute(9, "char", "_pad0[6]", "System.Char[]", 6, false)] public char[] _pad0 = new System.Char[6]; public bUserExtensionRepo() { this.ptr_next = default; this.ptr_prev = default; this.name = default; this.module = default; this.ptr_access_token = default; this.custom_dirpath = default; this.remote_url = default; this.flag = default; this.source = default; this._pad0 = default; } public bUserExtensionRepo(bUserExtensionRepo ptr_next, bUserExtensionRepo ptr_prev, char[] name, char[] module, char ptr_access_token, char[] custom_dirpath, char[] remote_url, byte flag, byte source, char[] _pad0) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.name = name; this.module = module; this.ptr_access_token = ptr_access_token; this.custom_dirpath = custom_dirpath; this.remote_url = remote_url; this.flag = flag; this.source = source; this._pad0 = _pad0; } } }